documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "NHTSA", document_type = "Proposed Rule" and posted_year = 2017 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), 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| NHTSA-2017-0088-0001 | NHTSA | 911 Grant Program NHTSA-2017-0088 | 911 Grant Program | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-09-21T04:00:00Z | 2017 | 9 | 2017-09-22T04:00:00Z | 2017-11-07T04:59:59Z | 2024-11-07T01:19:18Z | 2017-19944 | 1 | 0 | 0900006482b6f6b4 |
| NHTSA-2017-0082-0001 | NHTSA | Automated Driving Systems: A Vision for Safety NHTSA-2017-0082 | Guidance: Automated Driving Systems - A Vision for Safety | Proposed Rule | Request for Comment | 2017-09-15T04:00:00Z | 2017 | 9 | 2017-09-15T04:00:00Z | 2017-11-15T04:59:59Z | 2024-11-07T01:10:41Z | 2017-19637 | 1 | 0 | 0900006482b3b607 |
| NHTSA-2016-0068-0107 | NHTSA | Draft Technical Assessment Report for CAFE Model Years 2022 and beyond NHTSA-2016-0068 | Reconsideration of Final Determination of Mid-term Evaluation of Greenhouse Gas Emissions Standards for Model Year 2022-2025 Light-duty Vehicles; Model Year 2021 Greenhouse Gas Emissions Standards | Proposed Rule | Request for Comment | 2017-08-21T04:00:00Z | 2017 | 8 | 2017-08-21T04:00:00Z | 2017-10-06T03:59:59Z | 2024-11-07T01:08:39Z | 2017-17419 | 1 | 0 | 0900006482a8b926 |
| 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-2017-0005-0001 | NHTSA | Denial for Petition for Rulemaking; Automatic Emergency Braking NHTSA-2017-0005 | Federal Motor Vehicle Safety Standards: Automatic Emergency Braking | Proposed Rule | Denial | 2017-01-25T05:00:00Z | 2017 | 1 | 2017-01-25T05:00:00Z | 2017-01-25T15:33:24Z | 2017-01542 | 0 | 0 | 0900006482491287 | |
| NHTSA-2016-0126-0009 | NHTSA | FMVSS No. 150, V2V Communications NHTSA-2016-0126 | Federal Motor Vehicle Safety Standards: V2V Communications | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2017-01-12T05:00:00Z | 2017 | 1 | 2017-01-12T05:00:00Z | 2017-04-13T03:59:59Z | 2024-11-11T21:33:09Z | 2016-31059 | 1 | 0 | 09000064824631b5 |
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;