documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "CPSC", document_type = "Proposed Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-0001-0001 | CPSC | Semiannual Regulatory Agenda CPSC-2020-0001 | Semiannual Regulatory Agenda | Proposed Rule | 2019-12-26T05:00:00Z | 2019 | 12 | 2019-12-26T05:00:00Z | 2020-01-28T04:59:59Z | 2020-01-08T20:44:29Z | 2019-26554 | 0 | 0 | 0900006484250024 | |
| CPSC-2017-0020-0010 | CPSC | Safety Standard for Infant Inclined Sleep Products CPSC-2017-0020 | Safety Standard for Infant Sleep Products | Proposed Rule | 2019-11-12T05:00:00Z | 2019 | 11 | 2019-11-12T05:00:00Z | 2020-02-27T04:59:59Z | 2020-03-05T02:01:01Z | 2019-23724 | 0 | 0 | 0900006484142c60 | |
| CPSC-2019-0020-0014 | CPSC | Performance Requirements for Residential Gas Furnaces and Boilers CPSC-2019-0020 | Performance Requirements for Residential Gas Furnaces and Boilers; Notice of Reopening of comment period | Proposed Rule | 2019-11-07T05:00:00Z | 2019 | 11 | 2019-11-07T05:00:00Z | 2020-01-07T04:59:59Z | 2020-01-07T02:01:17Z | 2019-24284 | 0 | 0 | 09000064841275f2 | |
| CPSC-2019-0023-0001 | CPSC | Children's Toys and Child Care Articles: Determinations Regarding ASTM F963 Elements and Phthalates for Unfinished Manufactured Fibers CPSC-2019-0023 | Children's Toys and Child Care Articles: Determinations Regarding ASTM F963 Elements and Phthalates for Unfinished Manufactured Fibers | Proposed Rule | 2019-10-09T04:00:00Z | 2019 | 10 | 2019-10-09T04:00:00Z | 2019-12-24T04:59:59Z | 2019-11-09T02:01:39Z | 2019-21517 | 0 | 0 | 09000064840635b7 | |
| CPSC-2019-0020-0001 | CPSC | Performance Requirements for Residential Gas Furnaces and Boilers CPSC-2019-0020 | Performance Requirements for Residential Gas Furnaces and Boilers | Proposed Rule | 2019-08-19T04:00:00Z | 2019 | 8 | 2019-08-19T04:00:00Z | 2019-10-19T03:59:59Z | 2019-10-19T01:01:31Z | 2019-17512 | 0 | 0 | 0900006483e6b867 | |
| CPSC-2019-0014-0001 | CPSC | Safety Standard for Gates and Enclosures CPSC-2019-0014 | Safety Standard for Gates and Enclosures | Proposed Rule | 2019-07-08T04:00:00Z | 2019 | 7 | 2019-07-08T04:00:00Z | 2019-09-24T03:59:59Z | 2019-09-21T01:00:55Z | 2019-14295 | 0 | 0 | 0900006483d65f98 | |
| CPSC-2019-0008-0001 | CPSC | Request for Information about Possible Exemptions from Testing and Other Changes to the Standard for the Flammability of Clothing Textiles CPSC-2019-0008 | Request for Information About Possible Exemptions From Testing and Other Changes to the Standard for the Flammability of Clothing Textiles | Proposed Rule | 2019-04-23T04:00:00Z | 2019 | 4 | 2019-04-23T04:00:00Z | 2019-06-25T03:59:59Z | 2019-06-26T01:03:33Z | 2019-08140 | 0 | 0 | 0900006483be1969 | |
| CPSC-2019-0007-0002 | CPSC | Outdoor Power Equipment Institute (OPEI) Petition CPSC-2019-0007 | Petition Requesting Rulemaking To Amend Safety Standard for Walk-Behind Power Lawn Mowers | Proposed Rule | 2019-04-09T04:00:00Z | 2019 | 4 | 2019-04-09T04:00:00Z | 2019-06-11T03:59:59Z | 2019-06-11T01:03:08Z | 2019-06841 | 0 | 0 | 0900006483b7815b | |
| CPSC-2019-0001-0001 | CPSC | Possible Improvements to SaferProducts.gov; Request for Information and Notice of Public Hearing CPSC-2019-0001 | Possible Improvements to SaferProducts.gov; Request for Information and Notice of Public Hearing | Proposed Rule | 2019-02-11T05:00:00Z | 2019 | 2 | 2019-02-11T05:00:00Z | 2019-04-04T03:59:59Z | 2019-04-04T01:01:26Z | 2019-01817 | 0 | 0 | 0900006483a5e7b4 |
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;