documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NHTSA-2018-0021" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, open_for_comment, withdrawn, 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-2018-0021-0658 | NHTSA | Camera Monitor Systems NHTSA-2018-0021 | Virginia Tech Transportation Institute - Cover Letter/CMS Study Briefing | Other | Report/Survey | 2020-11-16T05:00:00Z | 2020 | 11 | 2020-11-16T05:00:00Z | 2020-11-16T17:38:30Z | 0 | 0 | 0900006484960ca9 | ||
| NHTSA-2018-0021-0056 | NHTSA | Camera Monitor Systems NHTSA-2018-0021 | US DOT/NHTSA- Final Report | Other | Report | 2019-10-18T04:00:00Z | 2019 | 10 | 2019-10-18T04:00:00Z | 2019-12-11T02:03:54Z | 0 | 0 | 09000064840bf4dc | ||
| NHTSA-2018-0021-0055 | NHTSA | Camera Monitor Systems NHTSA-2018-0021 | US DOT/NHTSA- Final Report | Other | Report | 2019-10-18T04:00:00Z | 2019 | 10 | 2019-10-18T04:00:00Z | 2019-11-19T02:02:06Z | 0 | 0 | 09000064840beb8b | ||
| NHTSA-2018-0021-0005 | NHTSA | Camera Monitor Systems NHTSA-2018-0021 | Federal Motor Vehicle Safety Standard No. 111, Rear Visibility | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2019-10-10T04:00:00Z | 2019 | 10 | 2019-10-10T04:00:00Z | 2019-12-10T04:59:59Z | 2025-09-06T09:00:10Z | 2019-22036 | 1 | 0 | 0900006484077749 |
| NHTSA-2018-0021-0003 | NHTSA | Camera Monitor Systems NHTSA-2018-0021 | US. DOT/NHTSA - Memorandum - Development of a Performance Specification for Camera/Video Imaging Systems on Heavy Vehicles Final Report | Other | Report | 2019-10-04T04:00:00Z | 2019 | 10 | 2019-10-04T04:00:00Z | 2019-10-04T20:11:28Z | 0 | 0 | 09000064840206eb | ||
| NHTSA-2018-0021-0004 | NHTSA | Camera Monitor Systems NHTSA-2018-0021 | US. DOT/NHTSA - Memorandum - Examination of a Prototype Camera Monitor System for Light Vehicle Outside Mirror Replacement | Other | Memorandum | 2019-10-04T04:00:00Z | 2019 | 10 | 2019-10-04T04:00:00Z | 2019-10-04T20:13:27Z | 0 | 0 | 090000648401f80e | ||
| NHTSA-2018-0021-0002 | NHTSA | Camera Monitor Systems NHTSA-2018-0021 | U.S. DOT/NHTSA - Final Report (4) Attached | Other | 2019-03-21T00:00:00Z | 2019 | 3 | 2019-03-21T19:28:57Z | 0 | 1 | 0900006483b1055a | ||||
| NHTSA-2018-0021-0001 | NHTSA | Camera Monitor Systems NHTSA-2018-0021 | Supplemental Information re: Petition for Rulemaking to Allow Camera-Monitor Systems in Lieu of Outside Rearview | Other | Letter(s) in Support | 2018-02-15T05:00:00Z | 2018 | 2 | 2018-02-15T05:00:00Z | 2018-02-15T20:21:25Z | 0 | 0 | 0900006482f36361 |
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;