documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "CPSC-2010-0022" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
- Notice 2
- Rule 2
- Proposed Rule 1
agency_id 1
- CPSC 5
| 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-0022-0017 | CPSC | Safety Standard for Toddler Beds CPSC-2010-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Safety Standard for Toddler Beds | Notice | Information Collection Request (ICR) | 2014-07-31T04:00:00Z | 2014 | 7 | 2014-07-31T04:00:00Z | 2014-09-03T03:59:59Z | 2015-07-16T19:09:08Z | 2014-18003 | 0 | 0 | 09000064817f16de |
| CPSC-2010-0022-0016 | CPSC | Safety Standard for Toddler Beds CPSC-2010-0022 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Safety Standard for Toddler Beds | Notice | Information Collection Request (ICR) | 2014-05-08T04:00:00Z | 2014 | 5 | 2014-05-08T04:00:00Z | 2014-07-08T03:59:59Z | 2015-07-16T19:09:00Z | 2014-10564 | 0 | 0 | 09000064816ea278 |
| CPSC-2010-0022-0015 | CPSC | Safety Standard for Toddler Beds CPSC-2010-0022 | Safety Standard for Toddler Beds; Correction | Rule | 2011-05-13T04:00:00Z | 2011 | 5 | 2011-05-13T04:00:00Z | 2011-06-11T17:05:08Z | C1-2011-9421 | 0 | 0 | 0900006480c79ebf | ||
| CPSC-2010-0022-0014 | CPSC | Safety Standard for Toddler Beds CPSC-2010-0022 | Safety Standard for Toddler Beds | Rule | 2011-04-20T04:00:00Z | 2011 | 4 | 2011-04-20T04:00:00Z | 2011-06-11T17:04:59Z | 2011-09421 | 0 | 0 | 0900006480c3287d | ||
| CPSC-2010-0022-0001 | CPSC | Safety Standard for Toddler Beds CPSC-2010-0022 | Safety Standard for Toddler Beds | Proposed Rule | 2010-04-28T04:00:00Z | 2010 | 4 | 2010-04-28T04:00:00Z | 2010-07-13T03:59:59Z | 2011-06-11T17:05:03Z | 2010-06947 | 0 | 0 | 0900006480ae290c |
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;