documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "NHTSA-2012-0084" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, 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-2012-0084-0034 | NHTSA | National Automotive Sampling System NHTSA-2012-0084 | Meetings: Data Modernization Sampling Information Webinars | Notice | Meeting | 2015-04-14T04:00:00Z | 2015 | 4 | 2015-04-14T04:00:00Z | 2015-04-14T15:55:30Z | 2015-08477 | 0 | 0 | 0900006481aa3bed | |
| NHTSA-2012-0084-0035 | NHTSA | National Automotive Sampling System NHTSA-2012-0084 | Petitions for Exemptions: Mercedes-Benz USA, LLC; Federal Motor Vehicle Theft Prevention Standard | Notice | 2015-04-14T00:00:00Z | 2015 | 4 | 2015-04-14T16:10:53Z | 0 | 1 | 0900006481aa3c31 | ||||
| NHTSA-2012-0084-0032 | NHTSA | National Automotive Sampling System NHTSA-2012-0084 | U.S.DOT/NHTSA - Proceedings of the Data Modernization Public Listening Session | Other | Hearing/Meeting Summary | 2013-08-12T04:00:00Z | 2013 | 8 | 2013-08-12T04:00:00Z | 2013-08-12T13:50:53Z | 0 | 0 | 09000064813a8abf | ||
| NHTSA-2012-0084-0033 | NHTSA | National Automotive Sampling System NHTSA-2012-0084 | U.S.DOT/NHTSA - Data Modernization Public Listening Session Presentation. | Other | Hearing/Meeting Summary | 2013-08-12T04:00:00Z | 2013 | 8 | 2013-08-12T13:55:00Z | 0 | 0 | 09000064813a8b89 | |||
| NHTSA-2012-0084-0029 | NHTSA | National Automotive Sampling System NHTSA-2012-0084 | Meetings: National Automotive Sampling System; PublicListening Session | Notice | Meeting | 2013-06-18T04:00:00Z | 2013 | 6 | 2013-06-18T04:00:00Z | 2013-07-19T03:59:59Z | 2024-11-11T20:45:43Z | 2013-14363 | 1 | 0 | 090000648132c4c6 |
| NHTSA-2012-0084-0007 | NHTSA | National Automotive Sampling System NHTSA-2012-0084 | Dynamic Research, Inc. - Report | Other | Report | 2012-07-18T04:00:00Z | 2012 | 7 | 2012-07-10T04:00:00Z | 2012-07-18T17:57:28Z | 0 | 0 | 090000648109f1e2 | ||
| NHTSA-2012-0084-0002 | NHTSA | National Automotive Sampling System NHTSA-2012-0084 | NASS Modernization Presentation | Other | Studies/Government/Public | 2012-07-03T04:00:00Z | 2012 | 7 | 2012-07-03T04:00:00Z | 2024-11-07T22:41:56Z | 1 | 0 | 0900006481078c93 | ||
| NHTSA-2012-0084-0001 | NHTSA | National Automotive Sampling System NHTSA-2012-0084 | National Automotive Sampling System | Notice | Request for Comments | 2012-06-21T04:00:00Z | 2012 | 6 | 2012-06-21T04:00:00Z | 2012-07-21T03:59:59Z | 2024-11-07T22:40:36Z | 2012-15228 | 1 | 0 | 090000648105c6ff |
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;