documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "CPSC", document_type = "Proposed Rule" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2008-0005-0057 | CPSC | Standard for the Flammability of Residential Upholstered Furniture CPSC-2008-0005 | Standard for the Flammability of Residential Upholstered Furniture | Proposed Rule | 2021-09-16T04:00:00Z | 2021 | 9 | 2021-09-16T04:00:00Z | 2021-09-17T21:37:27Z | 2021-19939 | 0 | 0 | 0900006484d83e23 | ||
| CPSC-2021-0027-0001 | CPSC | Petition to Exempt Baloxavir Marboxil (XOFLUZA™) in 40 mg and 80 mg Tablet Doses from Special Packaging Requirements of the PPPA CPSC-2021-0027 | Poison Prevention Packaging Requirements: Proposed Exemption of Baloxavir Marboxil Tablets in Packages Containing Not More than 80 mg of the Drug | Proposed Rule | 2021-09-16T04:00:00Z | 2021 | 9 | 2021-09-16T04:00:00Z | 2021-12-01T04:59:59Z | 2021-10-16T01:00:51Z | 2021-19953 | 0 | 0 | 0900006484d83dab | |
| 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 | |
| CPSC-2021-0014-0001 | CPSC | Off-Highway Vehicle (OHV) Fire Debris-Penetration Hazards: ANPR; Request for Comments and Information CPSC-2021-0014 | Off-Highway Vehicle Fire and Debris-Penetration Hazards | Proposed Rule | 2021-05-11T04:00:00Z | 2021 | 5 | 2021-05-11T04:00:00Z | 2021-07-13T03:59:59Z | 2021-07-13T01:00:16Z | 2021-09881 | 0 | 0 | 0900006484ae99d4 | |
| CPSC-2021-0007-0002 | CPSC | Standard for the Flammability of Upholstered Furniture CPSC-2021-0007 | Standard for the Flammability of Upholstered Furniture | Proposed Rule | 2021-04-09T04:00:00Z | 2021 | 4 | 2021-04-09T04:00:00Z | 2021-05-11T03:59:59Z | 2021-04-09T14:27:49Z | 2021-06976 | 0 | 0 | 0900006484aa1286 |
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;