documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "CPSC-2013-0025" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2013-0025-0020 | CPSC | Safety Standards for Infant Walkers and Infant Swings CPSC-2013-0025 | Safety Standard for Infant and Cradle Swings | Rule | 2024-05-30T04:00:00Z | 2024 | 5 | 2024-05-30T04:00:00Z | 2024-07-02T03:59:59Z | 2024-07-02T01:00:57Z | 2024-11792 | 0 | 0 | 090000648658c1bc | |
| CPSC-2013-0025-0012 | CPSC | Safety Standards for Infant Walkers and Infant Swings CPSC-2013-0025 | Safety Standard for Infant Swings | Rule | 2022-09-20T04:00:00Z | 2022 | 9 | 2022-09-20T04:00:00Z | 2022-10-21T03:59:59Z | 2022-10-22T01:00:48Z | 2022-20246 | 0 | 0 | 09000064853362ed | |
| CPSC-2013-0025-0007 | CPSC | Safety Standards for Infant Walkers and Infant Swings CPSC-2013-0025 | Safety Standard for Infant Swings | Rule | 2021-10-28T04:00:00Z | 2021 | 10 | 2021-10-28T04:00:00Z | 2021-11-30T04:59:59Z | 2021-11-29T02:00:32Z | 2021-23453 | 0 | 0 | 0900006484dfcf40 | |
| CPSC-2013-0025-0004 | CPSC | Safety Standards for Infant Walkers and Infant Swings CPSC-2013-0025 | Revisions to Safety Standard for Infant Swings | Rule | 2021-01-19T05:00:00Z | 2021 | 1 | 2021-01-19T05:00:00Z | 2021-02-19T04:59:59Z | 2021-02-17T02:00:26Z | 2020-28362 | 0 | 0 | 09000064849f7f14 | |
| CPSC-2013-0025-0001 | CPSC | Safety Standards for Infant Walkers and Infant Swings CPSC-2013-0025 | Safety Standards for Infant Walkers and Infant Swings | Rule | Direct Final Rule | 2013-06-24T04:00:00Z | 2013 | 6 | 2013-06-24T04:00:00Z | 2013-07-25T03:59:59Z | 2013-06-26T17:32:50Z | 2013-14991 | 0 | 0 | 090000648133b592 |
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;