documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "NHTSA", document_type = "Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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-2019-0127-0001 | NHTSA | Finial Rule Odometer disclosure requirement (Part 580) NHTSA-2019-0127 | Odometer Disclosure Requirements | Rule | Final Rule | 2019-11-26T05:00:00Z | 2019 | 11 | 2019-11-26T05:00:00Z | 2024-11-12T23:13:12Z | 2019-25657 | 1 | 0 | 09000064841b7604 | |
| NHTSA-2013-0009-0184 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | Revisions to Civil Penalty Amounts | Rule | Correction | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-29T04:00:00Z | 2024-11-12T23:10:26Z | C1-2019-14101 | 1 | 0 | 090000648410400e | |
| NHTSA-2019-0089-0001 | NHTSA | Final Rule- Odometer Disclosure Requirements NHTSA-2019-0089 | Odometer Disclosure Requirements | Rule | Final Rule | 2019-10-02T04:00:00Z | 2019 | 10 | 2019-10-02T04:00:00Z | 2024-11-12T23:10:20Z | 2019-20360 | 1 | 0 | 0900006484003813 | |
| NHTSA-2018-0067-12444 | NHTSA | The Safer Affordable Fuel-Efficient (SAFE) Vehicles Rule for Model Years 2021-2026 Passenger Cars and Light Trucks NHTSA-2018-0067 | The Safer Affordable Fuel-Efficient Vehicles Rule Part One: One National Program | Rule | Withdrawal | 2019-09-27T04:00:00Z | 2019 | 9 | 2019-09-27T04:00:00Z | 2025-07-07T21:21:42Z | 2019-20672 | 0 | 0 | 0900006483fdd7e6 | |
| NHTSA-2019-0009-0004 | NHTSA | Electric Powered Vehicles Electrolyte Spillage and Electrical Shock Protection NHTSA-2019-0009 | Federal Motor Vehicle Safety Standards: Electric-Powered Vehicles: Electrolyte Spillage and Electrical Shock Protection | Rule | Final Rule | 2019-08-23T04:00:00Z | 2019 | 8 | 2019-08-23T04:00:00Z | 2019-08-23T20:58:10Z | 2019-17814 | 0 | 0 | 0900006483ea7ad7 | |
| NHTSA-2013-0009-0183 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | Revisions to Civil Penalty Amounts | Rule | Final Rule | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T04:00:00Z | 2024-11-12T23:05:11Z | 2019-14101 | 1 | 0 | 0900006483dd47d7 | |
| NHTSA-2018-0017-0020 | NHTSA | Civil Penalties - NPRM - Part 578 NHTSA-2018-0017 | Civil Penalties | Rule | Final Rule | 2019-07-26T04:00:00Z | 2019 | 7 | 2019-07-26T04:00:00Z | 2019-09-05T19:29:26Z | 2019-15259 | 0 | 0 | 0900006483dbb13c | |
| NHTSA-2017-0091-0001 | NHTSA | Final Listing of Model Year 2018 Light Duty Truck Lines and Exempted Vehicle Lines NHTSA-2017-0091 | Federal Motor Vehicle Theft Prevention Standard: Final Listing of 2018 Light Duty Truck Lines Subject to the Requirements of This Standard and Exempted Vehicle Lines for Model Year 2018 | Rule | Final Rule | 2019-06-12T04:00:00Z | 2019 | 6 | 2019-06-12T04:00:00Z | 2024-11-12T23:03:13Z | 2019-12333 | 1 | 0 | 0900006483d08282 | |
| NHTSA-2016-0099-0004 | NHTSA | Regulatory Update of Transfer and Sanction Programs NHTSA-2016-0099 | Transfer and Sanction Programs | Rule | Final Rule | 2019-02-08T05:00:00Z | 2019 | 2 | 2019-02-08T05:00:00Z | 2024-11-12T22:54:57Z | 2019-01647 | 1 | 0 | 0900006483a55e5e |
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;