documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "CPSC", document_type = "Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, posted_date (date), comment_start_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-2012-0005-0011 | CPSC | Products Containing Imidazolines Equivalent to 0.08 Milligrams or More CPSC-2012-0005 | Requirements for Child-Resistant Packaging: Products Containing Specified Imidazolines Equivalent to 0.08 Milligrams or More; Extension of Stay of Enforcement | Rule | Policy Statement | 2014-11-20T05:00:00Z | 2014 | 11 | 2014-11-20T05:00:00Z | 2014-11-28T13:46:26Z | 2014-27378 | 0 | 0 | 09000064819398c7 | |
| CPSC-2012-0050-2596 | CPSC | Safety Standard for Magnet Sets CPSC-2012-0050 | Safety Standard for Magnet Sets | Rule | Final Rule | 2014-10-03T04:00:00Z | 2014 | 10 | 2014-10-03T04:00:00Z | 2014-10-03T21:15:52Z | 2014-23341 | 0 | 0 | 09000064818a678e | |
| CPSC-2013-0014-0010 | CPSC | Safety Standard for Soft Infant and Toddler Carriers CPSC-2013-0014 | Safety Standard for Soft Infant and Toddler Carriers | Rule | Final Rule | 2014-03-28T04:00:00Z | 2014 | 3 | 2014-03-28T04:00:00Z | 2014-03-31T22:32:58Z | 2014-06771 | 0 | 0 | 090000648168a2da | |
| CPSC-2013-0019-0008 | CPSC | Safety Standard for Carriages and Strollers CPSC-2013-0019 | Safety Standard for Carriages and Strollers | Rule | Final Rule | 2014-03-10T04:00:00Z | 2014 | 3 | 2014-03-10T04:00:00Z | 2015-07-16T19:23:22Z | 2014-05065 | 0 | 0 | 090000648165ab30 | |
| CPSC-2013-0010-0009 | CPSC | Hazardous Substances and Articles; Supplemental Definition of "Strong Sensitizer" CPSC-2013-0010 | Hazardous Substances and Articles; Administration and Enforcement Regulations: Supplemental Definition of Strong Sensitizer | Rule | Final Rule | 2014-02-14T05:00:00Z | 2014 | 2 | 2014-02-14T05:00:00Z | 2014-02-14T16:07:33Z | 2014-03260 | 0 | 0 | 0900006481566168 | |
| CPSC-2012-0067-0007 | CPSC | Safety Standard for Bedside Sleepers CPSC-2012-0067 | Safety Standard for Bedside Sleepers | Rule | Final Rule | 2014-01-15T05:00:00Z | 2014 | 1 | 2014-01-15T05:00:00Z | 2014-01-16T21:14:02Z | 2014-00597 | 0 | 0 | 0900006481509ba5 |
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;