documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "CPSC-2017-0044" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2017-0044-0049 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | Safety Standard for Clothing Storage Units; Opportunity for Oral Presentation of Comments | Proposed Rule | 2022-03-01T05:00:00Z | 2022 | 3 | 2022-03-01T05:00:00Z | 2022-03-24T03:59:59Z | 2022-03-24T01:00:35Z | 2022-04217 | 0 | 0 | 0900006484fb0826 | |
| CPSC-2017-0044-0047 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | Safety Standard for Clothing Storage Units | Proposed Rule | 2022-02-03T05:00:00Z | 2022 | 2 | 2022-02-03T05:00:00Z | 2022-04-20T03:59:59Z | 2022-05-21T01:00:58Z | 2022-01689 | 0 | 0 | 0900006484f4ff00 | |
| CPSC-2017-0044-0003 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | Clothing Storage Unit Tip Overs; Extension of Comment Period | Proposed Rule | 2018-01-17T05:00:00Z | 2018 | 1 | 2018-01-17T05:00:00Z | 2018-04-15T03:59:59Z | 2022-01-28T02:00:46Z | 2018-00552 | 0 | 0 | 0900006482e18ad4 | |
| CPSC-2017-0044-0001 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | Clothing Storage Unit Tip Overs: Request for Information | Proposed Rule | 2017-11-30T05:00:00Z | 2017 | 11 | 2017-11-30T05:00:00Z | 2018-01-30T04:59:59Z | 2017-12-17T02:01:41Z | 2017-25779 | 0 | 0 | 0900006482cc0a03 |
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;