documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "CPSC", document_type = "Proposed Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2020-0024-0001 | CPSC | Standard for the Flammability of Mattresses and Mattress Pads CPSC-2020-0024 | Standard for the Flammability of Mattresses and Mattress Pads | Proposed Rule | 2020-10-30T04:00:00Z | 2020 | 10 | 2020-10-30T04:00:00Z | 2021-01-14T04:59:59Z | 2021-01-14T02:01:03Z | 2020-22747 | 0 | 0 | 09000064849416d4 | |
| CPSC-2020-0023-0001 | CPSC | Safety Standards for Crib Mattresses CPSC-2020-0023 | Safety Standard for Crib Mattresses | Proposed Rule | 2020-10-26T04:00:00Z | 2020 | 10 | 2020-10-26T04:00:00Z | 2021-01-12T04:59:59Z | 2022-01-28T02:00:39Z | 2020-22558 | 0 | 0 | 090000648492f84b | |
| CPSC-2020-0019-0001 | CPSC | Regulatory Flexibility Act Section 610 Review of Testing and Labeling Regulations- Product Certification of Children's Products CPSC-2020-0019 | Regulatory Flexibility Act Review: Testing and Labeling Regulations Pertaining to Product Certification of Children's Products, Including Reliance on Component Part Testing | Proposed Rule | 2020-08-24T04:00:00Z | 2020 | 8 | 2020-08-24T04:00:00Z | 2020-10-24T03:59:59Z | 2020-10-25T01:01:18Z | 2020-16441 | 0 | 0 | 090000648481a4d9 | |
| CPSC-2020-0011-0001 | CPSC | Notice of Fees for Production of Records; Other Amendments to Procedures for Disclosure of Information Under the Freedom of Information Act – Notice of Proposed Rules CPSC-2020-0011 | Fees for Production of Records; Other Amendments to Procedures for Disclosure of Information Under the Freedom of Information Act | Proposed Rule | 2020-04-16T04:00:00Z | 2020 | 4 | 2020-04-16T04:00:00Z | 2020-07-01T03:59:59Z | 2020-07-01T01:01:50Z | 2020-07558 | 0 | 0 | 09000064844ab92f | |
| CPSC-2020-0010-0001 | CPSC | Safety Standard for Crib Bumpers/Liners CPSC-2020-0010 | Safety Standard for Crib Bumpers/Liners | Proposed Rule | 2020-04-03T04:00:00Z | 2020 | 4 | 2020-04-03T04:00:00Z | 2020-06-18T03:59:59Z | 2020-06-20T01:02:24Z | 2020-06142 | 0 | 0 | 090000648448471d | |
| CPSC-2010-0075-0069 | CPSC | Safety Standards for Full-Size Baby Cribs and Non-Full-Size Baby Cribs; Notice of Proposed Rulemaking CPSC-2010-0075 | Review of the Safety Standards for Full-Size Baby Cribs and Non-Full-Size Baby Cribs | Proposed Rule | 2020-01-31T05:00:00Z | 2020 | 1 | 2020-01-31T05:00:00Z | 2020-04-01T03:59:59Z | 2020-04-01T01:00:30Z | 2020-01832 | 0 | 0 | 0900006484315e31 | |
| CPSC-2017-0020-0027 | CPSC | Safety Standard for Infant Inclined Sleep Products CPSC-2017-0020 | Supplemental Notice of Proposed Rulemaking To Establishment a Safety Standard for Infant Sleep Products; Notice of Extension of Comment Period | Proposed Rule | 2020-01-28T05:00:00Z | 2020 | 1 | 2020-01-28T05:00:00Z | 2020-02-27T04:59:59Z | 2020-01-28T16:25:12Z | 2020-01413 | 0 | 0 | 09000064842fab52 |
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;