documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "CPSC-2017-0044" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-2017-0044-0026 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | Comment from J re CSU Tip Overs ANPR (1 of 2) | Supporting & Related Material | 2018-06-20T04:00:00Z | 2018 | 6 | 2018-06-21T00:32:46Z | 0 | 0 | 0900006483430980 | ||||
| CPSC-2017-0044-0027 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | Comment from J re CSU Tip Overs ANPR (2 of 2) | Supporting & Related Material | 2018-06-20T04:00:00Z | 2018 | 6 | 2018-06-21T00:32:31Z | 0 | 0 | 0900006483431108 | ||||
| CPSC-2017-0044-0025 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | Meeting Log F15d42 Meeting Label TG 3-1-18 | Supporting & Related Material | 2018-04-24T04:00:00Z | 2018 | 4 | 2018-04-25T00:32:53Z | 0 | 0 | 090000648306d96f | ||||
| CPSC-2017-0044-0024 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | ANPR Operational Slide Length Task Group Meeting Log 3-18-2018 | Supporting & Related Material | 2018-04-24T04:00:00Z | 2018 | 4 | 2018-04-25T00:32:38Z | 0 | 0 | 090000648306d96d | ||||
| CPSC-2017-0044-0023 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | ANPR Meeting Log 3-18-2018 | Supporting & Related Material | 2018-04-24T04:00:00Z | 2018 | 4 | 2018-04-25T00:33:23Z | 0 | 0 | 090000648306d96e | ||||
| CPSC-2017-0044-0022 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | ANPR Freestanding Furniture Task Group Meeting Log 3-26-2018 | Supporting & Related Material | 2018-04-24T04:00:00Z | 2018 | 4 | 2018-04-25T00:33:09Z | 0 | 0 | 090000648306d96c | ||||
| CPSC-2017-0044-0007 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | ANPR Meeting Logs | Supporting & Related Material | 2018-03-29T04:00:00Z | 2018 | 3 | 2018-03-30T00:33:31Z | 0 | 0 | 090000648306d96b | ||||
| CPSC-2017-0044-0004 | CPSC | Clothing Storage Unit Tip Overs; Request for Comments and Information CPSC-2017-0044 | CPSC and SBA Meeting Summary 02-07-2018 | Supporting & Related Material | 2018-02-15T05:00:00Z | 2018 | 2 | 2018-02-16T04:35:13Z | 0 | 0 | 0900006482f35e27 | ||||
| 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 |
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;