documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "NHTSA-2013-0009" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NHTSA-2013-0009-0200 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | Public Hearing: Corporate Average Fuel Economy Standards for Model Years 2024-2026 Passenger Cars and Light Trucks | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2021-09-14T04:00:00Z | 2021 | 9 | 2021-09-14T04:00:00Z | 2024-11-07T00:31:49Z | 2021-19799 | 1 | 0 | 0900006484d7ba8e | |
| NHTSA-2013-0009-0145 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | Federal Motor Vehicle Safety Standards: Lamp, Reflective Devices, and Associated Equipment; Denial of Petition for Rulemaking | Proposed Rule | Denial | 2018-01-26T05:00:00Z | 2018 | 1 | 2018-01-26T05:00:00Z | 2024-11-07T01:20:32Z | 2018-01403 | 1 | 0 | 0900006482e6bfdf | |
| NHTSA-2013-0009-0103 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | Determination of Mid-Term Evaluation of Greenhouse Gas Emissions Standards: Model Year 2022-2025 Light Duty Vehicles | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-03-22T04:00:00Z | 2017 | 3 | 2017-03-22T04:00:00Z | 2017-05-11T13:02:23Z | 2017-05316 | 0 | 0 | 0900006482518ca4 | |
| NHTSA-2013-0009-0090 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | Petition for Rulemaking; Denials: Federal Motor Vehicle Safety Standards | Proposed Rule | Denial | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-12T05:00:00Z | 2016-02-17T21:07:32Z | 2016-02763 | 0 | 0 | 0900006481e6965f | |
| NHTSA-2013-0009-0084 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | Retrospective Regulatory Review-State Safety Plan Development and Reporting (Duplicate of FHWA-2014-0032) | Proposed Rule | Approval | 2015-09-24T04:00:00Z | 2015 | 9 | 2015-09-24T04:00:00Z | 2015-09-25T20:37:30Z | 2015-24154 | 0 | 0 | 0900006481c9269f |
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;