documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "CPSC-2009-0087" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2009-0087-0736 | CPSC | Standard for Recreational Off-Highway Vehicles CPSC-2009-0087 | Withdrawal of Proposed Regulatory Actions | Proposed Rule | 2025-09-29T04:00:00Z | 2025 | 9 | 2025-09-29T04:00:00Z | 2025-09-30T00:00:26Z | 2025-18810 | 0 | 0 | 09000064b8fe424a | ||
| CPSC-2009-0087-0338 | CPSC | Standard for Recreational Off-Highway Vehicles CPSC-2009-0087 | Recreational Off-Highway Vehicles; Extensions | Proposed Rule | 2015-04-07T04:00:00Z | 2015 | 4 | 2015-04-07T04:00:00Z | 2015-06-20T03:59:59Z | 2015-07-16T19:08:55Z | 2015-07910 | 0 | 0 | 0900006481a90407 | |
| CPSC-2009-0087-0135 | CPSC | Standard for Recreational Off-Highway Vehicles CPSC-2009-0087 | Recreational Off-Highway Vehicles (ROVs); Extension of Comment Period | Proposed Rule | 2015-01-23T05:00:00Z | 2015 | 1 | 2015-01-23T05:00:00Z | 2015-04-09T03:59:59Z | 2015-07-16T19:07:41Z | 2015-01110 | 0 | 0 | 09000064819db7eb | |
| CPSC-2009-0087-0134 | CPSC | Standard for Recreational Off-Highway Vehicles CPSC-2009-0087 | Recreational Off-Highway Vehicles; Correction | Proposed Rule | 2014-12-31T05:00:00Z | 2014 | 12 | 2014-12-31T05:00:00Z | 2015-07-16T19:06:49Z | 2014-30515 | 0 | 0 | 090000648199bd93 | ||
| CPSC-2009-0087-0133 | CPSC | Standard for Recreational Off-Highway Vehicles CPSC-2009-0087 | Recreational Off-Highway Vehicles (ROVs): Opportunity for Oral Presentation of Comments; Meeting | Proposed Rule | 2014-12-03T05:00:00Z | 2014 | 12 | 2014-12-03T05:00:00Z | 2016-10-28T01:00:31Z | 2014-28381 | 0 | 0 | 0900006481957704 | ||
| CPSC-2009-0087-0131 | CPSC | Standard for Recreational Off-Highway Vehicles CPSC-2009-0087 | Safety Standard for Recreational Off-Highway Vehicles | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2014-11-19T05:00:00Z | 2014 | 11 | 2014-11-19T05:00:00Z | 2015-02-03T04:59:59Z | 2015-07-16T19:07:24Z | 2014-26500 | 0 | 0 | 0900006481937e3f |
| CPSC-2009-0087-0023 | CPSC | Standard for Recreational Off-Highway Vehicles CPSC-2009-0087 | Standard for Recreational Off-Highway Vehicles | Proposed Rule | 2009-12-22T05:00:00Z | 2009 | 12 | 2009-12-22T05:00:00Z | 2010-03-16T03:59:59Z | 2011-06-11T17:04:49Z | E9-30378 | 0 | 0 | 0900006480a6f726 | |
| CPSC-2009-0087-0001 | CPSC | Standard for Recreational Off-Highway Vehicles CPSC-2009-0087 | Standard for Recreational Off-Highway Vehicles | Proposed Rule | 2009-10-28T04:00:00Z | 2009 | 10 | 2009-10-28T04:00:00Z | 2009-12-29T04:59:59Z | 2011-06-11T17:04:54Z | E9-25959 | 0 | 0 | 0900006480a4cba3 |
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;