documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "NHTSA-2016-0040" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, open_for_comment, 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-2016-0040-0042 | NHTSA | Request for public comments Safety Related Defects and Emerging Automotive Technology NHTSA-2016-0040 | Request For Clarification on Enforcement Guidance on Advanced Automotive Technologies | Other | Request | 2016-11-25T05:00:00Z | 2016 | 11 | 2016-11-25T05:00:00Z | 2016-11-25T16:23:18Z | 0 | 0 | 09000064823b3834 | ||
| NHTSA-2016-0040-0041 | NHTSA | Request for public comments Safety Related Defects and Emerging Automotive Technology NHTSA-2016-0040 | Auto Alliance - Enforcement Guidance 11-22-16 | Other | Additional Information | 2016-11-25T05:00:00Z | 2016 | 11 | 2016-11-25T05:00:00Z | 2016-11-25T16:01:33Z | 0 | 0 | 09000064823adf86 | ||
| NHTSA-2016-0040-0040 | NHTSA | Request for public comments Safety Related Defects and Emerging Automotive Technology NHTSA-2016-0040 | Guidance: Safety-Related Defects and Automated Safety Technologies | Notice | Notice of Intent | 2016-09-23T04:00:00Z | 2016 | 9 | 2016-09-23T04:00:00Z | 2016-09-23T19:12:03Z | 2016-23010 | 0 | 0 | 090000648225ad93 | |
| NHTSA-2016-0040-0039 | NHTSA | Request for public comments Safety Related Defects and Emerging Automotive Technology NHTSA-2016-0040 | USDOT/NHTSA - Response to Quality Control Systems Corporation | Other | Response(s) | 2016-08-16T04:00:00Z | 2016 | 8 | 2016-08-16T04:00:00Z | 2016-08-16T13:43:49Z | 0 | 0 | 09000064821762c2 | ||
| NHTSA-2016-0040-0001 | NHTSA | Request for public comments Safety Related Defects and Emerging Automotive Technology NHTSA-2016-0040 | Guidance: Safety-Related Defects and Emerging Automotive Technologies | Notice | Request for Comments | 2016-04-01T04:00:00Z | 2016 | 4 | 2016-04-01T04:00:00Z | 2016-05-03T03:59:59Z | 2024-11-07T23:42:29Z | 2016-07353 | 1 | 0 | 0900006481f0938b |
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;