documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "CPSC-2011-0081" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-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 | |
| 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-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 |
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;