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 = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, 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-2009-0087-0134 | CPSC | Standard for Recreational Off-Highway Vehicles CPSC-2009-0087 | Recreational Off-Highway Vehicles; Correction | Proposed Rule | 2014-12-31T05:00:00Z | 2014 | 12 | 2014-12-31T05:00:00Z | 2015-07-16T19:06:49Z | 2014-30515 | 0 | 0 | 090000648199bd93 | ||
| CPSC-2014-0033-0001 | CPSC | Prohibition of Children’s Toys and Child Care Articles Containing Specified Phthalates CPSC-2014-0033 | Prohibition of Children's Toys and Child Care Articles Containing Specified Phthalates | Proposed Rule | 2014-12-30T05:00:00Z | 2014 | 12 | 2014-12-30T05:00:00Z | 2015-03-17T03:59:59Z | 2015-03-19T02:04:48Z | 2014-29967 | 0 | 0 | 0900006481999a73 | |
| CPSC-2009-0087-0133 | CPSC | Standard for Recreational Off-Highway Vehicles CPSC-2009-0087 | Recreational Off-Highway Vehicles (ROVs): Opportunity for Oral Presentation of Comments; Meeting | Proposed Rule | 2014-12-03T05:00:00Z | 2014 | 12 | 2014-12-03T05:00:00Z | 2016-10-28T01:00:31Z | 2014-28381 | 0 | 0 | 0900006481957704 | ||
| CPSC-2009-0087-0131 | CPSC | Standard for Recreational Off-Highway Vehicles CPSC-2009-0087 | Safety Standard for Recreational Off-Highway Vehicles | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-11-19T05:00:00Z | 2014 | 11 | 2014-11-19T05:00:00Z | 2015-02-03T04:59:59Z | 2015-07-16T19:07:24Z | 2014-26500 | 0 | 0 | 0900006481937e3f |
| CPSC-2014-0024-0001 | CPSC | Seasonal and Decorative Lighting Products CPSC-2014-0024 | Substantial Product Hazard List: Seasonal and Decorative Lighting Products | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-10-16T04:00:00Z | 2014 | 10 | 2014-10-16T04:00:00Z | 2014-12-31T04:59:59Z | 2015-01-12T16:12:12Z | 2014-24378 | 0 | 0 | 09000064818c8725 |
| CPSC-2014-0018-0001 | CPSC | Safety Standard on Infant Sling Carriers CPSC-2014-0018 | Safety Standard for Sling Carriers | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-07-23T04:00:00Z | 2014 | 7 | 2014-07-23T04:00:00Z | 2014-10-07T03:59:59Z | 2014-10-16T01:06:31Z | 2014-16792 | 0 | 0 | 09000064817d7697 |
| CPSC-2013-0017-0062 | CPSC | Certificates of Compliance CPSC-2013-0017 | Electronic Filing of Certificates of Compliance | Proposed Rule | Public Hearing | 2014-07-03T04:00:00Z | 2014 | 7 | 2014-07-03T04:00:00Z | 2014-11-01T03:59:59Z | 2014-11-02T01:17:40Z | 2014-15241 | 0 | 0 | 090000648178e975 |
| CPSC-2014-0011-0001 | CPSC | Safety Standard for Frame Child Carriers CPSC-2014-0011 | Safety Standards: Frame Child Carriers | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-05-16T04:00:00Z | 2014 | 5 | 2014-05-16T04:00:00Z | 2014-07-31T03:59:59Z | 2014-08-05T01:03:43Z | 2014-11193 | 0 | 0 | 09000064816ff268 |
| CPSC-2014-0005-0001 | CPSC | Information Disclosure Under Section 6(b) of the Consumer Product Safety Act CPSC-2014-0005 | Information Disclosure under Section 6(b) of the Consumer Product Safety Act | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-02-26T05:00:00Z | 2014 | 2 | 2014-02-26T05:00:00Z | 2014-04-29T03:59:59Z | 2014-05-25T00:25:35Z | 2014-03600 | 0 | 0 | 09000064815c3a21 |
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;