documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NHTSA-2016-0098" 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-0098-0009 | NHTSA | Receipt of Petition to Amend Takata DIR Schedule (General Motors) NHTSA-2016-0098 | Petition to Amend Takata Defect Information Report Schedule; Withdrawal General Motors LLC | Notice | Notice of Intent | 2016-11-23T05:00:00Z | 2016 | 11 | 2016-11-23T05:00:00Z | 2024-11-12T06:18:12Z | 2016-28227 | 1 | 0 | 09000064823b5f25 | |
| NHTSA-2016-0098-0008 | NHTSA | Receipt of Petition to Amend Takata DIR Schedule (General Motors) NHTSA-2016-0098 | Notice of Withdrawal of General Motor's LLC's Petition to Amend Takata DIR Schedule dated September 2, 2016 | Other | Withdrawal | 2016-11-17T05:00:00Z | 2016 | 11 | 2016-11-17T05:00:00Z | 2024-11-07T23:49:51Z | 1 | 0 | 0900006482398305 | ||
| NHTSA-2016-0098-0006 | NHTSA | Receipt of Petition to Amend Takata DIR Schedule (General Motors) NHTSA-2016-0098 | U.S. States Senate - General Motors LLC (GM) Letter to Petition | Other | Letter(s) | 2016-11-14T05:00:00Z | 2016 | 11 | 2016-11-14T05:00:00Z | 2016-11-14T19:26:55Z | 0 | 0 | 090000648238a1d6 | ||
| NHTSA-2016-0098-0007 | NHTSA | Receipt of Petition to Amend Takata DIR Schedule (General Motors) NHTSA-2016-0098 | General Motors - Extension Request Regarding the TAKATA Airbags Installed in Chevrolet Trucks Comment | Other | Additional Information | 2016-11-14T05:00:00Z | 2016 | 11 | 2016-11-14T05:00:00Z | 2016-11-14T19:42:40Z | 0 | 0 | 090000648238a1d8 | ||
| NHTSA-2016-0098-0002 | NHTSA | Receipt of Petition to Amend Takata DIR Schedule (General Motors) NHTSA-2016-0098 | Receipts of Petitions: General Motors, LLC; Takata Defect Information Report Amendment | Notice | Notice of Receipt of Petition | 2016-09-20T04:00:00Z | 2016 | 9 | 2016-09-20T04:00:00Z | 2016-10-05T03:59:59Z | 2024-11-07T23:48:28Z | 2016-22631 | 1 | 0 | 090000648222d389 |
| NHTSA-2016-0098-0001 | NHTSA | Receipt of Petition to Amend Takata DIR Schedule (General Motors) NHTSA-2016-0098 | U.S. DOT/NHTSA - General Motors LLC's Petition to Amend Takata DIR Schedule (with Exhibits A-C) | Other | Petition(s) | 2016-09-16T04:00:00Z | 2016 | 9 | 2016-09-16T04:00:00Z | 2016-09-16T16:35:00Z | 0 | 0 | 0900006482219c88 |
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;