documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "CPSC-2013-0016" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- CPSC 10
| 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-0016-0015 | CPSC | Petition Requesting Exception From Lead Content Limits: BIC USA, Inc. CPSC-2013-0016 | Petitions for Exceptions from Lead Content Limits: BIC USA, Inc. | Notice | Request for Comments | 2014-03-03T05:00:00Z | 2014 | 3 | 2014-03-03T05:00:00Z | 2014-04-03T03:59:59Z | 2014-06-06T01:06:18Z | 2014-04581 | 0 | 0 | 09000064815f364c |
| CPSC-2013-0016-0014 | CPSC | Petition Requesting Exception From Lead Content Limits: BIC USA, Inc. CPSC-2013-0016 | BIC USA Functional Purpose Test Exception Request 01-21-2014 | Supporting & Related Material | 2014-01-22T05:00:00Z | 2014 | 1 | 2014-01-22T21:11:13Z | 0 | 0 | 090000648151b7cd | ||||
| CPSC-2013-0016-0013 | CPSC | Petition Requesting Exception From Lead Content Limits: BIC USA, Inc. CPSC-2013-0016 | Objection Letter from PPT-Technology (Shanghai) Co. Ltd. | Supporting & Related Material | Background Material | 2013-10-28T04:00:00Z | 2013 | 10 | 2013-10-28T20:20:57Z | 0 | 0 | 0900006481464139 | |||
| CPSC-2013-0016-0012 | CPSC | Petition Requesting Exception From Lead Content Limits: BIC USA, Inc. CPSC-2013-0016 | BLee Response to GGorder of TSG BIC Penpoint Pb 2013Aug20 | Supporting & Related Material | Background Material | 2013-08-26T04:00:00Z | 2013 | 8 | 2013-08-26T20:14:13Z | 0 | 0 | 09000064813c52bd | |||
| CPSC-2013-0016-0011 | CPSC | Petition Requesting Exception From Lead Content Limits: BIC USA, Inc. CPSC-2013-0016 | GGorder BIC to CPSC in Response to BLee Comment 07302013 | Supporting & Related Material | Background Material | 2013-08-16T04:00:00Z | 2013 | 8 | 2013-08-16T17:14:00Z | 0 | 0 | 09000064813b5c94 | |||
| CPSC-2013-0016-0010 | CPSC | Petition Requesting Exception From Lead Content Limits: BIC USA, Inc. CPSC-2013-0016 | Pen Petition Follow-Up Questions from CPSC | Supporting & Related Material | Background Material | 2013-08-16T04:00:00Z | 2013 | 8 | 2013-08-16T17:14:00Z | 0 | 0 | 09000064813b5c93 | |||
| CPSC-2013-0016-0009 | CPSC | Petition Requesting Exception From Lead Content Limits: BIC USA, Inc. CPSC-2013-0016 | Comment from Walter T. Eglin | Supporting & Related Material | Background Material | 2013-08-13T04:00:00Z | 2013 | 8 | 2013-08-13T19:56:48Z | 0 | 0 | 09000064813b020b | |||
| CPSC-2013-0016-0008 | CPSC | Petition Requesting Exception From Lead Content Limits: BIC USA, Inc. CPSC-2013-0016 | BIC USA Response to CPSC Staff August 2 2013 | Supporting & Related Material | Background Material | 2013-08-07T04:00:00Z | 2013 | 8 | 2013-08-07T20:21:56Z | 0 | 0 | 09000064813966b3 | |||
| CPSC-2013-0016-0002 | CPSC | Petition Requesting Exception From Lead Content Limits: BIC USA, Inc. CPSC-2013-0016 | Petition submitted by BIC USA, Inc. | Supporting & Related Material | Petition | 2013-05-07T04:00:00Z | 2013 | 5 | 2013-05-07T21:25:46Z | 0 | 0 | 09000064812c0922 | |||
| CPSC-2013-0016-0001 | CPSC | Petition Requesting Exception From Lead Content Limits: BIC USA, Inc. CPSC-2013-0016 | Exception from Lead Content Limits; Petitions: BIC USA Inc. | Notice | Notice of Receipt of Petition | 2013-04-30T04:00:00Z | 2013 | 4 | 2013-04-30T04:00:00Z | 2013-05-31T03:59:59Z | 2013-06-21T01:01:30Z | 2013-10093 | 0 | 0 | 09000064812ad9ee |
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;