documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "CPSC-2021-0015" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- CPSC 5
| 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-2021-0015-0023 | CPSC | Petition Requesting Rulemaking on Duster Aerosol Products CPSC-2021-0015 | Banned Hazardous Substances: Aerosol Duster Products Containing More Than 18 mg in Any Combination of HFC-152a and/or HFC-134a | Proposed Rule | 2024-07-31T04:00:00Z | 2024 | 7 | 2024-07-31T04:00:00Z | 2024-10-01T03:59:59Z | 2024-10-11T01:01:03Z | 2024-16716 | 0 | 0 | 090000648660fc1f | |
| CPSC-2021-0015-0022 | CPSC | Petition Requesting Rulemaking on Duster Aerosol Products CPSC-2021-0015 | CPSC Report Response from Parents United Against Inhalant Abuse | Supporting & Related Material | 2022-11-09T05:00:00Z | 2022 | 11 | 2022-11-10T01:31:37Z | 0 | 0 | 09000064854a0148 | ||||
| CPSC-2021-0015-0021 | CPSC | Petition Requesting Rulemaking on Duster Aerosol Products CPSC-2021-0015 | Difluoroethane Death Data by States (VAFlCAPATXALGANC)-r1 | Supporting & Related Material | 2022-06-09T04:00:00Z | 2022 | 6 | 2022-06-10T00:31:32Z | 0 | 0 | 0900006485155321 | ||||
| CPSC-2021-0015-0002 | CPSC | Petition Requesting Rulemaking on Duster Aerosol Products CPSC-2021-0015 | Petition from Families United Against Inhalant Abuse (FUAIA) - CP 21-1 | Supporting & Related Material | 2021-06-30T04:00:00Z | 2021 | 6 | 2021-07-01T00:31:46Z | 0 | 0 | 0900006484bc5582 | ||||
| CPSC-2021-0015-0001 | CPSC | Petition Requesting Rulemaking on Duster Aerosol Products CPSC-2021-0015 | Petition Requesting Rulemaking on Duster Aerosol Products | Proposed Rule | 2021-06-29T04:00:00Z | 2021 | 6 | 2021-06-29T04:00:00Z | 2021-08-31T03:59:59Z | 2022-02-05T02:00:54Z | 2021-13337 | 0 | 0 | 0900006484bbd8ac |
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;