documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "CPSC" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| id | agency_id | docket_id | title | document_type | subtype | posted_date ▲ | posted_year | posted_month | comment_start_date | comment_end_date | last_modified | fr_doc_num | open_for_comment | withdrawn | object_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CPSC-2005-0008-0001 | CPSC | SMC Marketing Corp., a Corporation, Provisional Acceptance of a Settlement Agreement and Order CPSC-2005-0008 | SMC Marketing Corp., a Corporation, Provisional Acceptance of a Settlement Agreement and Order | Notice | 2005-12-09T05:00:00Z | 2005 | 12 | 2005-12-09T05:00:00Z | 2011-04-05T16:57:26Z | 05-23875 | 0 | 0 | 09000064800f1a89 | ||
| CPSC-2005-0006-0001 | CPSC | Proposed Collection; Comment Request--Testing and Recordkeeping Requirements for Carpets and Rugs CPSC-2005-0006 | Proposed Collection; Comment Request--Testing and Recordkeeping Requirements for Carpets and Rugs | Notice | 2005-12-05T05:00:00Z | 2005 | 12 | 2005-12-05T05:00:00Z | 2011-04-05T16:54:30Z | E5-06799 | 0 | 0 | 09000064800ec9ca | ||
| CPSC-2005-0007-0001 | CPSC | Proposed Collection of Information; Comment Request--Baby- Bouncers, Walker-Jumpers, and Baby-Walkers CPSC-2005-0007 | Proposed Collection of Information; Comment Request--Baby- Bouncers, Walker-Jumpers, and Baby-Walkers | Notice | 2005-12-05T05:00:00Z | 2005 | 12 | 2005-12-05T05:00:00Z | 2011-04-05T16:55:49Z | E5-06800 | 0 | 0 | 09000064800ecb8f | ||
| CPSC-2005-0005-0001 | CPSC | Proposed Collection of Information; Comment Request--Procurement of Goods and Services CPSC-2005-0005 | Proposed Collection of Information; Comment Request--Procurement of Goods and Services | Notice | 2005-12-05T05:00:00Z | 2005 | 12 | 2005-12-05T05:00:00Z | 2011-04-05T16:25:14Z | E5-06801 | 0 | 0 | 09000064800ec951 | ||
| CPSC-2005-0004-0001 | CPSC | All Terrain Vehicles; Advance Notice of Proposed Rulemaking; Request for Comments and Information CPSC-2005-0004 | All Terrain Vehicles; Advance Notice of Proposed Rulemaking; Request for Comments and Information | Proposed Rule | 2005-10-14T04:00:00Z | 2005 | 10 | 2005-10-14T04:00:00Z | 2005-12-14T04:59:59Z | 2011-04-05T16:26:49Z | 05-20557 | 0 | 0 | 0900006480092c2e | |
| CPSC-2005-0003-0001 | CPSC | Petition Requesting Amendment to Ban on Infant Pillows (Petition HP 05-1) CPSC-2005-0003 | Petition Requesting Amendment to Ban on Infant Pillows (Petition HP 05-1) | Notice | 2005-10-13T04:00:00Z | 2005 | 10 | 2005-10-13T04:00:00Z | 2011-03-25T16:04:47Z | 05-20524 | 0 | 0 | 0900006480092544 | ||
| CPSC-2005-0001-0001 | CPSC | Notification of Request for Extension of Approval of Information Collection Activity; Notification Requirements for Coal and Wood Burning Appliances CPSC-2005-0001 | Notification of Request for Extension of Approval of Information Collection Activity; Notification Requirements for Coal and Wood Burning Appliances | Notice | 2005-10-05T04:00:00Z | 2005 | 10 | 2005-10-05T04:00:00Z | 2009-09-01T14:18:58Z | 05-19890 | 0 | 0 | 090000648008eebb | ||
| CPSC-2005-0002-0001 | CPSC | Notification of Request for Extension of Approval of Information Collection Activity--Notification Requirements for Sound Levels of Toy Caps CPSC-2005-0002 | Notification of Request for Extension of Approval of Information Collection Activity--Notification Requirements for Sound Levels of Toy Caps | Notice | 2005-10-05T04:00:00Z | 2005 | 10 | 2005-10-05T04:00:00Z | 2011-04-05T16:49:11Z | 05-19891 | 0 | 0 | 090000648008efc3 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE documents (
id TEXT PRIMARY KEY,
agency_id TEXT,
docket_id TEXT REFERENCES dockets(id),
title TEXT,
document_type TEXT,
subtype TEXT,
posted_date TEXT,
posted_year INTEGER,
posted_month INTEGER,
comment_start_date TEXT,
comment_end_date TEXT,
last_modified TEXT,
fr_doc_num TEXT,
open_for_comment INTEGER,
withdrawn INTEGER,
object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;