documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "CPSC", document_type = "Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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-2011-0081-0079 | CPSC | Application of Third Party Testing Requirements; Reducing Third Party Testing Burdens CPSC-2011-0081 | Toys: Determination Regarding Heavy Elements Limits for Unfinished and Untreated Wood | Rule | 2015-12-17T05:00:00Z | 2015 | 12 | 2015-12-17T05:00:00Z | 2016-01-04T21:36:00Z | 2015-31723 | 0 | 0 | 0900006481db6b58 | ||
| CPSC-2011-0081-0078 | CPSC | Application of Third Party Testing Requirements; Reducing Third Party Testing Burdens CPSC-2011-0081 | Amendment to Clarify When Component Part Testing Can Be Used and Which Textile Products Have Been Determined Not to Exceed the Allowable Lead Content Limits | Rule | 2015-11-19T05:00:00Z | 2015 | 11 | 2015-11-19T05:00:00Z | 2016-01-14T04:59:59Z | 2016-01-20T22:00:19Z | 2015-29503 | 0 | 0 | 0900006481d5a34d | |
| CPSC-2011-0081-0075 | CPSC | Application of Third Party Testing Requirements; Reducing Third Party Testing Burdens CPSC-2011-0081 | Amendment to Clarify When Component Part Testing Can be Used and Which Textile Products Have Been Determined Not to Exceed the Allowable Lead Content Limits | Rule | 2015-10-14T04:00:00Z | 2015 | 10 | 2015-10-14T04:00:00Z | 2015-11-14T04:59:59Z | 2015-10-16T15:44:12Z | 2015-25932 | 0 | 0 | 0900006481cc8fba | |
| CPSC-2011-0081-0074 | CPSC | Application of Third Party Testing Requirements; Reducing Third Party Testing Burdens CPSC-2011-0081 | Toys; Determination Regarding Heavy Elements Limits for Unfinished and Untreated Wood | Rule | 2015-09-10T04:00:00Z | 2015 | 9 | 2015-09-10T04:00:00Z | 2015-09-15T19:11:05Z | 2015-22829 | 0 | 0 | 0900006481c655c3 | ||
| CPSC-2015-0003-0009 | CPSC | Substantial Product Hazard List: Extension Cords CPSC-2015-0003 | Substantial Product Hazard List: Extension Cords | Rule | 2015-07-27T04:00:00Z | 2015 | 7 | 2015-07-27T04:00:00Z | 2015-07-27T19:15:49Z | 2015-18294 | 0 | 0 | 0900006481ba66e4 | ||
| CPSC-2011-0081-0066 | CPSC | Application of Third Party Testing Requirements; Reducing Third Party Testing Burdens CPSC-2011-0081 | Toys: Determination Regarding Heavy Elements Limits for Unfinished and Untreated Wood | Rule | 2015-07-17T04:00:00Z | 2015 | 7 | 2015-07-17T04:00:00Z | 2015-08-18T03:59:59Z | 2015-08-15T01:30:42Z | 2015-17413 | 0 | 0 | 0900006481b8e923 | |
| CPSC-2014-0024-0065 | CPSC | Seasonal and Decorative Lighting Products CPSC-2014-0024 | Substantial Product Hazard List: Seasonal and Decorative Lighting Products | Rule | 2015-05-04T04:00:00Z | 2015 | 5 | 2015-05-04T04:00:00Z | 2015-05-16T01:32:24Z | 2015-10342 | 0 | 0 | 0900006481acb21e | ||
| CPSC-2015-0006-0001 | CPSC | Children's Gasoline Burn Prevention Act Regulation CPSC-2015-0006 | Children's Gasoline Burn Prevention Act Regulation | Rule | 2015-03-31T04:00:00Z | 2015 | 3 | 2015-03-31T04:00:00Z | 2015-04-13T03:59:59Z | 2015-03-31T19:31:58Z | 2015-07151 | 0 | 0 | 0900006481a7c938 | |
| CPSC-2014-0011-0007 | CPSC | Safety Standard for Frame Child Carriers CPSC-2014-0011 | Safety Standard for Frame Child Carriers | Rule | 2015-03-02T05:00:00Z | 2015 | 3 | 2015-03-02T05:00:00Z | 2015-03-02T15:11:29Z | 2015-03717 | 0 | 0 | 0900006481a23453 | ||
| CPSC-2015-0002-0001 | CPSC | Notice of Determination Under the Drywall Safety Act of 2012 CPSC-2015-0002 | Determinations under the Drywall Safety Act of 2012 | Rule | 2015-01-23T05:00:00Z | 2015 | 1 | 2015-01-23T05:00:00Z | 2015-01-23T21:36:49Z | 2015-01051 | 0 | 0 | 09000064819db743 |
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;