documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "CPSC-2012-0057" and document_type = "Notice" 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-2012-0057-0005 | CPSC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Electrically Operated Toys and Children's Articles CPSC-2012-0057 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Requirements for Electrically Operated Toys and Children's Articles | Notice | 2016-02-23T05:00:00Z | 2016 | 2 | 2016-02-23T05:00:00Z | 2016-03-25T03:59:59Z | 2016-02-23T20:59:41Z | 2016-03701 | 0 | 0 | 0900006481e8054a | |
| CPSC-2012-0057-0004 | CPSC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Electrically Operated Toys and Children's Articles CPSC-2012-0057 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Requirements for Electrically Operated Toys and Children's Articles | Notice | 2015-11-25T05:00:00Z | 2015 | 11 | 2015-11-25T05:00:00Z | 2016-01-26T04:59:59Z | 2015-11-30T21:09:12Z | 2015-29977 | 0 | 0 | 0900006481d72a17 | |
| CPSC-2012-0057-0003 | CPSC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Electrically Operated Toys and Children's Articles CPSC-2012-0057 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Requirements for Electrically Operated Toys and Children's Articles | Notice | Information Collection Request (ICR) | 2012-12-26T05:00:00Z | 2012 | 12 | 2012-12-26T05:00:00Z | 2013-01-26T04:59:59Z | 2013-01-08T22:08:52Z | 2012-30990 | 0 | 0 | 090000648119a6c8 |
| CPSC-2012-0057-0002 | CPSC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Electrically Operated Toys and Children's Articles CPSC-2012-0057 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Electrically Operated Toys and Children's Articles | Notice | Correction | 2012-10-17T04:00:00Z | 2012 | 10 | 2012-10-17T04:00:00Z | 2012-10-23T22:36:40Z | 2012-25523 | 0 | 0 | 0900006481144d6d | |
| CPSC-2012-0057-0001 | CPSC | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Electrically Operated Toys and Children's Articles CPSC-2012-0057 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Electrically Operated Toys and Children's Articles | Notice | Information Collection Request (ICR) | 2012-10-04T04:00:00Z | 2012 | 10 | 2012-10-04T04:00:00Z | 2012-12-04T04:59:59Z | 2012-10-23T22:34:46Z | 2012-24489 | 0 | 0 | 0900006481133f56 |
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;