documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "CPSC-2019-0014" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
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-2019-0014-0017 | CPSC | Safety Standard for Gates and Enclosures CPSC-2019-0014 | Voluntary Standard for Gates and Enclosures; Revision | Proposed Rule | 2026-01-27T05:00:00Z | 2026 | 1 | 2026-01-27T05:00:00Z | 2026-02-11T04:59:59Z | 2026-01-27T18:37:56Z | 2026-01497 | 0 | 0 | 09000064b918486f | |
| CPSC-2019-0014-0014 | CPSC | Safety Standard for Gates and Enclosures CPSC-2019-0014 | Safety Standard for Gates and Enclosures | Rule | 2022-11-14T05:00:00Z | 2022 | 11 | 2022-11-14T05:00:00Z | 2022-12-15T04:59:59Z | 2022-12-15T02:01:06Z | 2022-24561 | 0 | 0 | 09000064854aabc2 | |
| CPSC-2019-0014-0012 | CPSC | Safety Standard for Gates and Enclosures CPSC-2019-0014 | Voluntary Standard for Gates and Enclosures | Notice | 2022-08-04T04:00:00Z | 2022 | 8 | 2022-08-04T04:00:00Z | 2022-08-19T03:59:59Z | 2022-08-09T01:00:19Z | 2022-16693 | 0 | 0 | 090000648520feb0 | |
| CPSC-2019-0014-0010 | CPSC | Safety Standard for Gates and Enclosures CPSC-2019-0014 | Safety Standard for Gates and Enclosures | Rule | 2021-09-28T04:00:00Z | 2021 | 9 | 2021-09-28T04:00:00Z | 2021-10-29T03:59:59Z | 2021-10-29T01:01:21Z | 2021-20851 | 0 | 0 | 0900006484dadfee | |
| CPSC-2019-0014-0009 | CPSC | Safety Standard for Gates and Enclosures CPSC-2019-0014 | Safety Standard for Gates and Enclosures | Rule | 2020-07-06T04:00:00Z | 2020 | 7 | 2020-07-06T04:00:00Z | 2020-07-08T17:13:49Z | 2020-12561 | 0 | 0 | 0900006484727b5c | ||
| CPSC-2019-0014-0008 | CPSC | Safety Standard for Gates and Enclosures CPSC-2019-0014 | 1-21-2020 ASTM Subcommittee Meeting – Gates and Enclosures F15.16 | Supporting & Related Material | 2020-05-08T04:00:00Z | 2020 | 5 | 2020-05-08T13:36:38Z | 0 | 0 | 0900006484585ea5 | ||||
| CPSC-2019-0014-0007 | CPSC | Safety Standard for Gates and Enclosures CPSC-2019-0014 | 3-10-2020 Gates Visual Side Pressure Indicator Task Group Meeting – Gates and Enclosures F15.16 | Supporting & Related Material | 2020-05-06T04:00:00Z | 2020 | 5 | 2020-05-06T17:00:35Z | 0 | 0 | 090000648456a515 | ||||
| CPSC-2019-0014-0006 | CPSC | Safety Standard for Gates and Enclosures CPSC-2019-0014 | 12-11-2019 Letter ASTM F15.16 Expansion Gates and Expandable Enclosures | Supporting & Related Material | 2020-02-24T05:00:00Z | 2020 | 2 | 2020-02-24T18:45:42Z | 0 | 0 | 09000064843a9aec | ||||
| CPSC-2019-0014-0003 | CPSC | Safety Standard for Gates and Enclosures CPSC-2019-0014 | Proposed Rule - Safety Standard for Gates and Enclosures - June 19 2019 | Supporting & Related Material | 2019-07-29T04:00:00Z | 2019 | 7 | 2019-07-30T00:35:16Z | 0 | 0 | 0900006483dc812c | ||||
| CPSC-2019-0014-0001 | CPSC | Safety Standard for Gates and Enclosures CPSC-2019-0014 | Safety Standard for Gates and Enclosures | Proposed Rule | 2019-07-08T04:00:00Z | 2019 | 7 | 2019-07-08T04:00:00Z | 2019-09-24T03:59:59Z | 2019-09-21T01:00:55Z | 2019-14295 | 0 | 0 | 0900006483d65f98 |
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;