documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "CPSC-2023-0046" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- CPSC 6
| 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-2023-0046-0023 | CPSC | Notice of Proposed Rulemaking - Safety Standard for Infant Rockers and Infant and Toddler Rockers CPSC-2023-0046 | Safety Standard: Infant and Infant/Toddler Rockers; Supplemental Information | Proposed Rule | 2024-10-02T04:00:00Z | 2024 | 10 | 2024-10-02T04:00:00Z | 2024-11-08T04:59:59Z | 2024-11-08T02:01:26Z | 2024-22062 | 0 | 0 | 09000064867a6ccd | |
| CPSC-2023-0046-0022 | CPSC | Notice of Proposed Rulemaking - Safety Standard for Infant Rockers and Infant and Toddler Rockers CPSC-2023-0046 | Data Regarding Incidents Associated with Infant and Infant/Toddler Rockers | Proposed Rule | 2024-08-22T04:00:00Z | 2024 | 8 | 2024-08-22T04:00:00Z | 2024-09-24T03:59:59Z | 2024-08-22T19:30:58Z | 2024-18133 | 0 | 0 | 090000648665c3fc | |
| CPSC-2023-0046-0021 | CPSC | Notice of Proposed Rulemaking - Safety Standard for Infant Rockers and Infant and Toddler Rockers CPSC-2023-0046 | 2024-05-29 Meeting Log with BabyBjorn (Comm Boyle and staff) | Supporting & Related Material | 2024-06-03T04:00:00Z | 2024 | 6 | 2024-06-04T00:33:22Z | 0 | 0 | 09000064865928d3 | ||||
| CPSC-2023-0046-0009 | CPSC | Notice of Proposed Rulemaking - Safety Standard for Infant Rockers and Infant and Toddler Rockers CPSC-2023-0046 | S. Newens - Request to extend comment period for Docket CPSC-2023-0046 | Supporting & Related Material | 2023-12-22T05:00:00Z | 2023 | 12 | 2023-12-23T01:32:24Z | 0 | 0 | 090000648634e7f4 | ||||
| CPSC-2023-0046-0004 | CPSC | Notice of Proposed Rulemaking - Safety Standard for Infant Rockers and Infant and Toddler Rockers CPSC-2023-0046 | Final Summary of Infant Rocker NPR - Docket CPSC-2023-0046 | Supporting & Related Material | 2023-12-11T05:00:00Z | 2023 | 12 | 2023-12-12T01:32:48Z | 0 | 0 | 0900006486321f46 | ||||
| CPSC-2023-0046-0001 | CPSC | Notice of Proposed Rulemaking - Safety Standard for Infant Rockers and Infant and Toddler Rockers CPSC-2023-0046 | Safety Standard for Infant and Infant/Toddler Rockers | Proposed Rule | 2023-10-26T04:00:00Z | 2023 | 10 | 2023-10-26T04:00:00Z | 2023-12-27T04:59:59Z | 2024-04-03T01:00:49Z | 2023-23322 | 0 | 0 | 090000648613f62b |
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;