documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "CPSC-2012-0038" 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-0038-0007 | CPSC | Proposed Extension of Approval of Information Collection; Comment Request -- Baby Bouncers and Walker-Jumpers CPSC-2012-0038 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Baby Bouncers and Walker-Jumpers | Notice | 2016-02-02T05:00:00Z | 2016 | 2 | 2016-02-02T05:00:00Z | 2016-03-04T04:59:59Z | 2016-02-24T21:00:26Z | 2016-01779 | 0 | 0 | 0900006481e44ef9 | |
| CPSC-2012-0038-0006 | CPSC | Proposed Extension of Approval of Information Collection; Comment Request -- Baby Bouncers and Walker-Jumpers CPSC-2012-0038 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Baby Bouncers and Walker-Jumpers | Notice | 2015-10-26T04:00:00Z | 2015 | 10 | 2015-10-26T04:00:00Z | 2015-12-29T04:59:59Z | 2015-11-05T23:50:23Z | 2015-27114 | 0 | 0 | 0900006481cecbaa | |
| CPSC-2012-0038-0005 | CPSC | Proposed Extension of Approval of Information Collection; Comment Request -- Baby Bouncers and Walker-Jumpers CPSC-2012-0038 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Baby Bouncers and Walker-Jumpers; Correction | Notice | 2012-09-11T04:00:00Z | 2012 | 9 | 2012-09-11T04:00:00Z | 2012-10-06T03:59:59Z | 2012-09-11T14:13:48Z | 2012-22312 | 0 | 0 | 0900006481110fa9 | |
| CPSC-2012-0038-0003 | CPSC | Proposed Extension of Approval of Information Collection; Comment Request -- Baby Bouncers and Walker-Jumpers CPSC-2012-0038 | Correction: Proposed Extension of Approval of Information Collection; Comment Request -- Baby Bouncers and Walker-Jumpers | Notice | Information Collection Request (ICR) | 2012-09-07T04:00:00Z | 2012 | 9 | 2012-09-07T04:00:00Z | 2012-09-07T13:47:09Z | 2012-19108 | 0 | 0 | 090000648110b918 | |
| CPSC-2012-0038-0002 | CPSC | Proposed Extension of Approval of Information Collection; Comment Request -- Baby Bouncers and Walker-Jumpers CPSC-2012-0038 | Proposed Extension of Approval of Information Collection; Comment Request -- Baby Bouncers and Walker-Jumpers | Notice | Information Collection Request (ICR) | 2012-09-07T04:00:00Z | 2012 | 9 | 2012-09-07T04:00:00Z | 2012-08-21T03:59:59Z | 2012-09-07T13:27:11Z | 2012-14950 | 0 | 0 | 090000648110b913 |
| CPSC-2012-0038-0004 | CPSC | Proposed Extension of Approval of Information Collection; Comment Request -- Baby Bouncers and Walker-Jumpers CPSC-2012-0038 | Submission for OMB Review; Comment Request: Requirements for Baby-Bouncers and Walker-Jumpers | Notice | Information Collection Request (ICR) | 2012-09-05T04:00:00Z | 2012 | 9 | 2012-09-05T04:00:00Z | 2012-09-07T14:47:41Z | 2012-21730 | 0 | 0 | 0900006481105b3f | |
| CPSC-2012-0038-0001 | CPSC | Proposed Extension of Approval of Information Collection; Comment Request -- Baby Bouncers and Walker-Jumpers CPSC-2012-0038 | Proposed Extension of Approval of Information Collection; Comment Request -- Baby Bouncers and Walker-Jumpers | Notice | 2012-08-06T00:00:00Z | 2012 | 8 | 2012-09-07T13:29:15Z | 0 | 1 | 09000064810c2dbe |
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;