documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NHTSA-2016-0090" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, open_for_comment, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- NHTSA 6
| 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-2016-0090-1130 | NHTSA | Request for Comments on Federal Automated Vehicle Policy NHTSA-2016-0090 | Federal Automated Vehicles Policy Public Meeting - December 12, 2016 (Transcript) | Other | Transcript(s) | 2017-05-12T04:00:00Z | 2017 | 5 | 2017-05-12T04:00:00Z | 2024-11-07T00:57:43Z | 1 | 0 | 09000064825ad5d8 | ||
| NHTSA-2016-0090-1117 | NHTSA | Request for Comments on Federal Automated Vehicle Policy NHTSA-2016-0090 | Federal Automated Vehicles Policy: Public Meeting | Proposed Rule | Supplemental Notice of Proposed Rulemaking (SNPRM) | 2016-11-29T05:00:00Z | 2016 | 11 | 2016-11-29T05:00:00Z | 2024-11-12T06:17:30Z | 2016-28628 | 1 | 0 | 09000064823c5fc0 | |
| NHTSA-2016-0090-0946 | NHTSA | Request for Comments on Federal Automated Vehicle Policy NHTSA-2016-0090 | Meetings: Federal Automated Vehicles Policy | Proposed Rule | Request for Comment | 2016-11-07T05:00:00Z | 2016 | 11 | 2016-11-07T05:00:00Z | 2016-11-23T04:59:59Z | 2024-11-07T23:50:34Z | 2016-26561 | 1 | 0 | 0900006482377c2b |
| NHTSA-2016-0090-0011 | NHTSA | Request for Comments on Federal Automated Vehicle Policy NHTSA-2016-0090 | Vehicle Performance Guidance | Supporting & Related Material | 2016-10-12T00:00:00Z | 2016 | 10 | 2016-10-17T20:37:33Z | 0 | 1 | 09000064822e26c4 | ||||
| NHTSA-2016-0090-0008 | NHTSA | Request for Comments on Federal Automated Vehicle Policy NHTSA-2016-0090 | Five Defects in NHTSA Policy on Automated Vehicles (September 2016) | Other | 2016-10-07T00:00:00Z | 2016 | 10 | 2016-10-17T20:36:30Z | 0 | 1 | 09000064822a86bc | ||||
| NHTSA-2016-0090-0001 | NHTSA | Request for Comments on Federal Automated Vehicle Policy NHTSA-2016-0090 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Federal Automated Vehicles Policy | Notice | Request for Comments | 2016-09-23T04:00:00Z | 2016 | 9 | 2016-09-23T04:00:00Z | 2016-11-23T04:59:59Z | 2024-11-12T06:14:12Z | 2016-22993 | 1 | 0 | 090000648225aea5 |
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;