documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "CPSC-2017-0044" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, withdrawn, 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-2017-0044-0036 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | HinesLab Letter to CHAB 8-8-2019 | Supporting & Related Material | 2019-08-15T04:00:00Z | 2019 | 8 | 2019-08-16T00:32:36Z | 0 | 0 | 0900006483e50ee9 | ||||
| CPSC-2017-0044-0035 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | Schoenfeld Petition re Clothing Storage Unit Tipovers | Supporting & Related Material | 2019-04-11T04:00:00Z | 2019 | 4 | 2019-04-12T00:33:52Z | 0 | 0 | 0900006483b873bc | ||||
| CPSC-2017-0044-0034 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | CPSC KID tipover petition signatures 4-10-2019 | Supporting & Related Material | 2019-04-11T00:00:00Z | 2019 | 4 | 2020-03-04T14:50:12Z | 0 | 1 | 0900006483b85f62 | ||||
| CPSC-2017-0044-0033 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | Tipover_KidSafe baseboard_Hines ltr 4.1.19 | Supporting & Related Material | 2019-04-03T04:00:00Z | 2019 | 4 | 2019-04-04T00:33:27Z | 0 | 0 | 0900006483b5e093 | ||||
| CPSC-2017-0044-0030 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | CHAB Letter to Rick Rosati Re ASTM 2057 - February 27, 2019 | Supporting & Related Material | 2019-03-25T04:00:00Z | 2019 | 3 | 2019-03-26T00:34:25Z | 0 | 0 | 0900006483b2a158 | ||||
| CPSC-2017-0044-0031 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | CSU Tip Over Letter (signed) - March 26, 2019 | Supporting & Related Material | 2019-03-25T04:00:00Z | 2019 | 3 | 2019-03-26T00:35:00Z | 0 | 0 | 0900006483b2a92a | ||||
| CPSC-2017-0044-0032 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | Email Request for CSU Rulemaking - March 4, 2019 | Supporting & Related Material | 2019-03-25T04:00:00Z | 2019 | 3 | 2019-03-26T00:34:43Z | 0 | 0 | 0900006483b2a35f | ||||
| CPSC-2017-0044-0029 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | CHAB Letter to Rick Rosati Re ASTM 2057 - February 27, 2019 | Supporting & Related Material | 2019-03-25T00:00:00Z | 2019 | 3 | 2019-03-26T00:34:09Z | 0 | 1 | 0900006483b29b76 |
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;