documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "NHTSA-2015-0006" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2015-0006-0062 | NHTSA | Automatic Emergency Braking NCAP NHTSA-2015-0006 | US. DOT/NHTSA - Report - Crash Imminent Braking System Confirmation Test -2017 Infiniti Q60 | Other | Report | 2017-11-07T05:00:00Z | 2017 | 11 | 2017-11-07T05:00:00Z | 2017-11-07T19:27:02Z | 0 | 0 | 0900006482c5496e | ||
| NHTSA-2015-0006-0061 | NHTSA | Automatic Emergency Braking NCAP NHTSA-2015-0006 | U.S. DOT/NHTSA- Dynamic Brake Support System Confirmation Test -2016 Kia Optima” | Other | Report | 2017-11-06T05:00:00Z | 2017 | 11 | 2017-11-06T05:00:00Z | 2017-11-06T15:56:08Z | 0 | 0 | 0900006482c4091b | ||
| NHTSA-2015-0006-0060 | NHTSA | Automatic Emergency Braking NCAP NHTSA-2015-0006 | U.S. DOT/NHTSA - Final Report - Dynamic Brake Support system Confirmation Test -2016 Kia Optima | Other | Report | 2017-08-23T04:00:00Z | 2017 | 8 | 2017-08-23T04:00:00Z | 2017-08-23T19:20:51Z | 0 | 0 | 0900006482a8c5cb | ||
| NHTSA-2015-0006-0058 | NHTSA | Automatic Emergency Braking NCAP NHTSA-2015-0006 | U.S. DOT/NHTSA- Final Report - Dynamic Brake Support System Confirmation Test- 2017 Mitsubishi Outlander | Other | Report | 2017-08-08T04:00:00Z | 2017 | 8 | 2017-08-08T04:00:00Z | 2017-08-08T15:52:15Z | 0 | 0 | 09000064829d6af4 | ||
| NHTSA-2015-0006-0059 | NHTSA | Automatic Emergency Braking NCAP NHTSA-2015-0006 | U.S. DOT/NHTSA- Final Report - Crash Imminent Braking System Confirmation Test- 2017 Mitsubishi Outlander | Other | Report | 2017-08-08T04:00:00Z | 2017 | 8 | 2017-08-08T04:00:00Z | 2017-08-08T15:53:16Z | 0 | 0 | 09000064829d6af6 | ||
| NHTSA-2015-0006-0055 | NHTSA | Automatic Emergency Braking NCAP NHTSA-2015-0006 | U.S. DOT/NHTSA - Final Report - Crash Imminent Braking System Confirmation Test -2017 Honda Ridgeline | Other | Report | 2017-07-20T04:00:00Z | 2017 | 7 | 2017-07-20T04:00:00Z | 2017-07-20T16:30:19Z | 0 | 0 | 0900006482941689 | ||
| NHTSA-2015-0006-0057 | NHTSA | Automatic Emergency Braking NCAP NHTSA-2015-0006 | U.S. DOT/NHTSA - Final Report - Dynamic Brake Support system Confirmation Test -2017 Lincoln MKX ” | Other | Report | 2017-07-20T04:00:00Z | 2017 | 7 | 2017-07-20T04:00:00Z | 2017-07-20T16:22:35Z | 0 | 0 | 09000064829416f6 | ||
| NHTSA-2015-0006-0056 | NHTSA | Automatic Emergency Braking NCAP NHTSA-2015-0006 | U.S. DOT/NHTSA - Final Report - Dynamic Brake Support system Confirmation Test -2017 GMC Acadia | Other | Report | 2017-07-20T04:00:00Z | 2017 | 7 | 2017-07-20T04:00:00Z | 2017-07-20T16:21:07Z | 0 | 0 | 090000648294168d | ||
| NHTSA-2015-0006-0054 | NHTSA | Automatic Emergency Braking NCAP NHTSA-2015-0006 | US DOT/NHTSA - Report - Crash Imminent Braking System Confirmation Test - 2017 Honda Accord Hybrid | Other | Report | 2017-05-17T04:00:00Z | 2017 | 5 | 2017-05-17T04:00:00Z | 2019-10-01T18:17:53Z | 0 | 0 | 09000064825d0da9 |
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;