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 = "Rule" and posted_year = 2016 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-2013-0019-0009 | CPSC | Safety Standard for Carriages and Strollers CPSC-2013-0019 | Revisions to Safety Standard for Carriages and Strollers | Rule | 2016-06-09T04:00:00Z | 2016 | 6 | 2016-06-09T04:00:00Z | 2016-07-12T03:59:59Z | 2016-06-09T20:18:01Z | 2016-13663 | 0 | 0 | 09000064820261d8 | |
| CPSC-2015-0025-0005 | CPSC | Safety Standard for Automatic Residential Garage Door Operators CPSC-2015-0025 | Safety Standard for Automatic Residential Garage Door Operators | Rule | 2016-04-07T04:00:00Z | 2016 | 4 | 2016-04-07T04:00:00Z | 2016-04-12T15:11:49Z | 2016-07552 | 0 | 0 | 0900006481f3aff9 | ||
| CPSC-2015-0016-0004 | CPSC | Safety Standard for Portable Hook-On Chairs CPSC-2015-0016 | Safety Standard for Portable Hook-On Chairs | Rule | 2016-03-28T04:00:00Z | 2016 | 3 | 2016-03-28T04:00:00Z | 2016-03-30T15:20:04Z | 2016-06769 | 0 | 0 | 0900006481ee3c43 | ||
| CPSC-2012-0049-0019 | CPSC | Petition: Requesting Rulemaking to Revise Test Procedures for Glazing Materials in Architectural Products CPSC-2012-0049 | Safety Standard for Architectural Glazing Materials | Rule | 2016-03-23T04:00:00Z | 2016 | 3 | 2016-03-23T04:00:00Z | 2016-03-25T15:08:03Z | 2016-06523 | 0 | 0 | 0900006481ed9845 | ||
| CPSC-2016-0005-0001 | CPSC | Statement of Policy on Enforcement : Discretion Regarding General Conformity Certificates for Adult Wearing Apparel Exempt From Testing CPSC-2016-0005 | Statement of Policy on Enforcement: General Conformity Certificates for Adult Wearing Apparel Exempt from Testing | Rule | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-10T05:00:00Z | 2016-03-18T19:28:25Z | 2016-04533 | 0 | 0 | 0900006481eb8365 | ||
| CPSC-2013-0034-0016 | CPSC | Commission Participation and Commission Employee Involvement in Voluntary Standards Activities CPSC-2013-0034 | Commission Participation and Commission Employee Involvement in Voluntary Standards Activities | Rule | 2016-02-02T05:00:00Z | 2016 | 2 | 2016-02-02T05:00:00Z | 2016-02-02T23:45:37Z | 2016-01778 | 0 | 0 | 0900006481e44da8 | ||
| CPSC-2011-0081-0083 | CPSC | Application of Third Party Testing Requirements; Reducing Third Party Testing Burdens CPSC-2011-0081 | When Component Part Testing Can Be Used and Which Textile Products Have Been Determined Not to Exceed the Allowable Lead Content Limits: Amendment; Delay of Effective Date; and Reopening of Comment Period, | Rule | 2016-01-04T05:00:00Z | 2016 | 1 | 2016-01-04T05:00:00Z | 2016-01-14T04:59:59Z | 2016-01-30T01:36:22Z | 2015-33068 | 0 | 0 | 0900006481de3fc5 |
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;