documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "NHTSA", document_type = "Rule" and posted_year = 2018 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-2018-0103-0001 | NHTSA | Updating the Petitions for Exemption Process NHTSA-2018-0103 | Temporary Exemption From Motor Vehicle Safety and Bumper Standards | Rule | Final Rule | 2018-12-26T05:00:00Z | 2018 | 12 | 2018-12-26T05:00:00Z | 2024-11-12T22:52:34Z | 2018-27795 | 1 | 0 | 09000064839c48a9 | |
| NHTSA-2013-0009-0173 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | Revisions to Civil Penalty Amounts | Rule | Final Rule | 2018-11-27T05:00:00Z | 2018 | 11 | 2018-11-27T05:00:00Z | 2018-11-27T15:21:08Z | 2018-24930 | 0 | 0 | 09000064838fea46 | |
| NHTSA-2016-0046-0001 | NHTSA | Final Listing of Model Year 2017 Light Duty Truck Lines and Exempted Vehicle Lines NHTSA-2016-0046 | Federal Motor Vehicle Theft Prevention Standard: Final Listing of 2017 Light Duty Truck Lines Subject to Requirements of This Standard and Exempted Vehicle Lines for Model Year 2017 | Rule | Final Rule | 2018-10-23T04:00:00Z | 2018 | 10 | 2018-10-23T04:00:00Z | 2024-11-07T01:05:39Z | 2018-23045 | 1 | 0 | 090000648383e047 | |
| NHTSA-2013-0009-0164 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | 911 Grant Program | Rule | Final Rule | 2018-08-14T04:00:00Z | 2018 | 8 | 2018-08-14T04:00:00Z | 2024-11-07T01:36:09Z | 2018-17423 | 1 | 0 | 090000648361dc82 | |
| NHTSA-2013-0009-0161 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | 911 Grant Program | Rule | Final Rule | 2018-08-03T04:00:00Z | 2018 | 8 | 2018-08-03T04:00:00Z | 2024-11-07T01:04:17Z | 2018-16567 | 1 | 0 | 09000064835c60af | |
| NHTSA-2013-0009-0150 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | Federal Motor Vehicle Safety Standards; CFR Correction | Rule | Correction | 2018-04-18T04:00:00Z | 2018 | 4 | 2018-04-18T04:00:00Z | 2018-04-20T16:10:13Z | 2018-08196 | 0 | 0 | 0900006483169c65 | |
| NHTSA-2018-0018-0001 | NHTSA | Federal Motor Vehicle Safety Standard No. 141, Minimum Sound Requirements for Hybrid and Electric Vehicles NHTSA-2018-0018 | Federal Motor Vehicle Safety Standards: Minimum Sound Requirements for Hybrid and Electric Vehicles | Rule | Final Rule | 2018-02-26T05:00:00Z | 2018 | 2 | 2018-02-26T05:00:00Z | 2024-11-07T01:22:49Z | 2018-03721 | 1 | 0 | 0900006482f61e0b | |
| NHTSA-2016-0057-0038 | NHTSA | Uniform Procedures for State Highway Safety Grant Programs NHTSA-2016-0057 | Uniform Procedures for State Highway Safety Grant Programs | Rule | Final Rule | 2018-01-25T05:00:00Z | 2018 | 1 | 2018-01-25T05:00:00Z | 2024-11-07T01:20:30Z | 2018-01266 | 1 | 0 | 0900006482e645fb |
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;