documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "CPSC-2022-0017" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
- Rule 3
- Proposed Rule 2
- Notice 1
agency_id 1
- CPSC 6
| 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-2022-0017-0017 | CPSC | Draft NOA: Staff draft document, Vol. Std. Evaluation Under the Portable Fuel Container Safety Act of 2020 CPSC-2022-0017 | Portable Fuel Container Safety Act Regulation | Rule | 2024-04-30T04:00:00Z | 2024 | 4 | 2024-04-30T04:00:00Z | 2024-05-31T03:59:59Z | 2024-05-01T02:20:08Z | 2024-09299 | 0 | 0 | 090000648652860a | |
| CPSC-2022-0017-0014 | CPSC | Draft NOA: Staff draft document, Vol. Std. Evaluation Under the Portable Fuel Container Safety Act of 2020 CPSC-2022-0017 | ASTM Standard under the Portable Fuel Container Safety Act | Proposed Rule | 2024-02-09T05:00:00Z | 2024 | 2 | 2024-02-09T05:00:00Z | 2024-02-24T04:59:59Z | 2024-02-24T02:00:45Z | 2024-02562 | 0 | 0 | 09000064863f7e5a | |
| CPSC-2022-0017-0012 | CPSC | Draft NOA: Staff draft document, Vol. Std. Evaluation Under the Portable Fuel Container Safety Act of 2020 CPSC-2022-0017 | Portable Fuel Container Safety Act Regulation | Rule | 2023-10-31T04:00:00Z | 2023 | 10 | 2023-10-31T04:00:00Z | 2023-12-01T04:59:59Z | 2023-11-25T02:00:40Z | 2023-23655 | 0 | 0 | 090000648619fc3d | |
| CPSC-2022-0017-0009 | CPSC | Draft NOA: Staff draft document, Vol. Std. Evaluation Under the Portable Fuel Container Safety Act of 2020 CPSC-2022-0017 | Updated ASTM Standard under the Portable Fuel Container Safety Act | Proposed Rule | 2023-06-23T04:00:00Z | 2023 | 6 | 2023-06-23T04:00:00Z | 2023-07-08T03:59:59Z | 2023-07-08T01:01:24Z | 2023-13351 | 0 | 0 | 0900006485bcd67a | |
| CPSC-2022-0017-0008 | CPSC | Draft NOA: Staff draft document, Vol. Std. Evaluation Under the Portable Fuel Container Safety Act of 2020 CPSC-2022-0017 | Determinations Regarding Portable Fuel Container Voluntary Standards Under the Portable Fuel Container Safety Act | Rule | 2023-01-13T05:00:00Z | 2023 | 1 | 2023-01-13T05:00:00Z | 2023-01-13T18:07:38Z | 2022-28325 | 0 | 0 | 09000064855eb93f | ||
| CPSC-2022-0017-0001 | CPSC | Draft NOA: Staff draft document, Vol. Std. Evaluation Under the Portable Fuel Container Safety Act of 2020 CPSC-2022-0017 | Voluntary Standards Evaluation Under the Portable Fuel Container Safety Act of 2020 | Notice | 2022-05-24T04:00:00Z | 2022 | 5 | 2022-05-24T04:00:00Z | 2022-06-24T03:59:59Z | 2022-06-24T01:00:58Z | 2022-11094 | 0 | 0 | 09000064850dbeed |
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;