documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "CPSC-2010-0028" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2010-0028-0104 | CPSC | Safety Standard for Bassinets and Cradles: Notice of Proposed Rulemaking CPSC-2010-0028 | Revision to the Voluntary Standard for Bassinets and Cradles | Proposed Rule | 2025-09-10T04:00:00Z | 2025 | 9 | 2025-09-10T04:00:00Z | 2025-09-25T03:59:59Z | 2025-09-25T09:01:42Z | 2025-17439 | 0 | 0 | 09000064b8f62d0b | |
| CPSC-2010-0028-0089 | CPSC | Safety Standard for Bassinets and Cradles: Notice of Proposed Rulemaking CPSC-2010-0028 | Safety Standard: Bassinets and Cradles | Proposed Rule | 2024-06-18T04:00:00Z | 2024 | 6 | 2024-06-18T04:00:00Z | 2024-08-02T03:59:59Z | 2024-08-02T01:01:16Z | 2024-13330 | 0 | 0 | 09000064865bc375 | |
| CPSC-2010-0028-0076 | CPSC | Safety Standard for Bassinets and Cradles: Notice of Proposed Rulemaking CPSC-2010-0028 | Safety Standard for Bassinets and Cradles | Proposed Rule | 2024-04-16T04:00:00Z | 2024 | 4 | 2024-04-16T04:00:00Z | 2024-06-18T03:59:59Z | 2024-06-18T01:00:57Z | 2024-07706 | 0 | 0 | 09000064864da7b9 | |
| CPSC-2010-0028-0025 | CPSC | Safety Standard for Bassinets and Cradles: Notice of Proposed Rulemaking CPSC-2010-0028 | Safety Standard for Bassinets and Cradles | Proposed Rule | 2012-10-18T04:00:00Z | 2012 | 10 | 2012-10-18T04:00:00Z | 2013-01-03T04:59:59Z | 2015-07-16T19:12:24Z | 2012-24896 | 0 | 0 | 0900006481146c02 | |
| CPSC-2010-0028-0011 | CPSC | Safety Standard for Bassinets and Cradles: Notice of Proposed Rulemaking CPSC-2010-0028 | Safety Standard for Bassinets and Cradles | Proposed Rule | 2010-07-20T04:00:00Z | 2010 | 7 | 2010-07-20T04:00:00Z | 2010-09-11T03:59:59Z | 2015-07-16T19:10:32Z | 2010-17596 | 0 | 0 | 0900006480b1cf3c |
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;