documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "NHTSA", document_type = "Rule" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, 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-0222 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | Revisions to Civil Penalty Amounts, 2024 | Rule | Final Rule | 2023-12-28T05:00:00Z | 2023 | 12 | 2023-12-28T05:00:00Z | 2023-12-28T14:51:05Z | 2023-28066 | 0 | 0 | 09000064863616b3 | |
| NHTSA-2023-0040-0001 | NHTSA | Final Rule that amends Federal Motor Vehicle Safety Standard No. 213, “Child restraint systems,” and adds FMVSS No. 213b NHTSA-2023-0040 | Federal Motor Vehicle Safety Standards: Child Restraint Systems | Rule | Final Rule | 2023-12-05T05:00:00Z | 2023 | 12 | 2023-12-05T05:00:00Z | 2023-12-05T13:34:15Z | 2023-26082 | 0 | 0 | 09000064862f42dc | |
| NHTSA-2023-0043-0001 | NHTSA | Final Rule; Response to Petitions for Reconsideration of the Rule Establishing FMVSS No. 227 NHTSA-2023-0043 | Federal Motor Vehicle Safety Standards: Bus Rollover Structural Integrity | Rule | Final Rule | 2023-11-13T05:00:00Z | 2023 | 11 | 2023-11-13T05:00:00Z | 2023-11-13T14:15:26Z | 2023-24381 | 0 | 0 | 090000648625ba90 | |
| NHTSA-2023-0003-0001 | NHTSA | MY 2021 Light duty truck and Exempted vehicle lines NHTSA-2023-0003 | Federal Motor Vehicle Theft Prevention Standard: Final Listing of 2021 Light Duty Truck Lines Subject to the Requirements of This Standard and Exempted Vehicle Lines for Model Year 2021 | Rule | Final Rule | 2023-11-09T05:00:00Z | 2023 | 11 | 2023-11-09T05:00:00Z | 2023-11-09T14:02:19Z | 2023-24611 | 0 | 0 | 0900006486231cbf | |
| NHTSA-2022-0036-0090 | NHTSA | Uniform Procedures for State Highway Safety Grant Programs NHTSA-2022-0036 | Uniform Procedures for State Highway Safety Grant Programs | Rule | Final Rule | 2023-06-05T04:00:00Z | 2023 | 6 | 2023-06-05T04:00:00Z | 2023-06-05T16:03:22Z | 2023-11758 | 0 | 0 | 0900006485abbeed | |
| NHTSA-2022-0036-0089 | NHTSA | Uniform Procedures for State Highway Safety Grant Programs NHTSA-2022-0036 | Uniform Procedures for State Highway Safety Grant Programs | Rule | Final Rule | 2023-02-06T05:00:00Z | 2023 | 2 | 2023-02-06T05:00:00Z | 2023-02-06T14:02:26Z | 2023-01819 | 0 | 0 | 0900006485633ebb | |
| NHTSA-2013-0009-0217 | NHTSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous NHTSA-2013-0009 | Civil Penalty Amounts | Rule | Final Rule | 2023-01-06T05:00:00Z | 2023 | 1 | 2023-01-06T05:00:00Z | 2023-01-06T15:25:43Z | 2022-28580 | 0 | 0 | 090000648559b262 |
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;