documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "CPSC-2010-0075" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| 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-0075-0060 | CPSC | Safety Standards for Full-Size Baby Cribs and Non-Full-Size Baby Cribs; Notice of Proposed Rulemaking CPSC-2010-0075 | Safety Standards for Full-Size Baby Cribs and Non-Full-Size Baby Cribs | Rule | 2010-12-28T05:00:00Z | 2010 | 12 | 2010-12-28T05:00:00Z | 2011-01-04T15:34:37Z | 2010-32178 | 0 | 0 | 0900006480bc11ab | ||
| CPSC-2010-0075-0061 | CPSC | Safety Standards for Full-Size Baby Cribs and Non-Full-Size Baby Cribs; Notice of Proposed Rulemaking CPSC-2010-0075 | Revocation of Requirements for Full-Size Baby Cribs and Non-Full-Size Baby Cribs | Rule | 2010-12-28T05:00:00Z | 2010 | 12 | 2010-12-28T05:00:00Z | 2011-01-04T15:38:23Z | 2010-32179 | 0 | 0 | 0900006480bc0c0b | ||
| CPSC-2010-0075-0059 | CPSC | Safety Standards for Full-Size Baby Cribs and Non-Full-Size Baby Cribs; Notice of Proposed Rulemaking CPSC-2010-0075 | Sunshine Act Meeting | Notice | 2010-12-13T05:00:00Z | 2010 | 12 | 2010-12-13T05:00:00Z | 2015-07-16T19:15:33Z | 2010-31350 | 0 | 0 | 0900006480bb4fc8 | ||
| CPSC-2010-0075-0058 | CPSC | Safety Standards for Full-Size Baby Cribs and Non-Full-Size Baby Cribs; Notice of Proposed Rulemaking CPSC-2010-0075 | Sunshine Act Meeting | Notice | 2010-12-03T05:00:00Z | 2010 | 12 | 2010-12-03T05:00:00Z | 2015-07-16T19:15:28Z | 2010-30484 | 0 | 0 | 0900006480bad66c | ||
| CPSC-2010-0075-0003 | CPSC | Safety Standards for Full-Size Baby Cribs and Non-Full-Size Baby Cribs; Notice of Proposed Rulemaking CPSC-2010-0075 | Full-Size and Non-Full Size Baby Cribs; Withdrawal | Proposed Rule | 2010-07-23T04:00:00Z | 2010 | 7 | 2010-07-23T04:00:00Z | 2015-07-16T19:14:54Z | 2010-17590 | 0 | 0 | 0900006480b1fdfc | ||
| CPSC-2010-0075-0002 | CPSC | Safety Standards for Full-Size Baby Cribs and Non-Full-Size Baby Cribs; Notice of Proposed Rulemaking CPSC-2010-0075 | Revocation of Requirements for Full-Size Baby Cribs and Non-Full-Size Baby Cribs | Proposed Rule | 2010-07-23T04:00:00Z | 2010 | 7 | 2010-07-23T04:00:00Z | 2010-10-07T03:59:59Z | 2015-07-16T19:14:17Z | 2010-17591 | 0 | 0 | 0900006480b1f89f | |
| CPSC-2010-0075-0001 | CPSC | Safety Standards for Full-Size Baby Cribs and Non-Full-Size Baby Cribs; Notice of Proposed Rulemaking CPSC-2010-0075 | Safety Standards for Full-Size Baby Cribs and Non-Full-Size Baby Cribs | Proposed Rule | 2010-07-23T04:00:00Z | 2010 | 7 | 2010-07-23T04:00:00Z | 2010-10-07T03:59:59Z | 2015-07-16T19:14:51Z | 2010-17594 | 0 | 0 | 0900006480b1f89b |
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;