documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NHTSA-2015-0070" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0070-0082 | NHTSA | ANPRM Underride Protection of Single Unit Trucks NHTSA-2015-0070 | IST Support Letter and Petition Withdrawal for ANPRM on SUT Conspicuity | Other | Letter(s) in Support | 2024-09-25T04:00:00Z | 2024 | 9 | 2024-09-25T04:00:00Z | 2024-09-25T16:25:36Z | 0 | 0 | 0900006486784fc5 | ||
| NHTSA-2015-0070-0081 | NHTSA | ANPRM Underride Protection of Single Unit Trucks NHTSA-2015-0070 | U.S. DOT/NHTA - x Parte Meeting, "Truck Underride Roundtable" | Other | Memorandum | 2017-02-10T05:00:00Z | 2017 | 2 | 2017-02-10T05:00:00Z | 2017-02-10T20:23:39Z | 0 | 0 | 09000064824b927a | ||
| NHTSA-2015-0070-0010 | NHTSA | ANPRM Underride Protection of Single Unit Trucks NHTSA-2015-0070 | Harvard School of Public Health - Letter in Support | Other | Letter(s) in Support | 2015-09-16T04:00:00Z | 2015 | 9 | 2015-09-16T04:00:00Z | 2015-09-16T15:46:09Z | 0 | 0 | 0900006481c7142d | ||
| NHTSA-2015-0070-0007 | NHTSA | ANPRM Underride Protection of Single Unit Trucks NHTSA-2015-0070 | NRMCA - Request 90 Day Extension | Other | Request for Extension | 2015-09-15T04:00:00Z | 2015 | 9 | 2015-09-15T04:00:00Z | 2015-09-15T14:33:25Z | 0 | 0 | 0900006481c6bca0 | ||
| NHTSA-2015-0070-0003 | NHTSA | ANPRM Underride Protection of Single Unit Trucks NHTSA-2015-0070 | Karth Family/Care2 - Petition | Other | Petition for Rulemaking | 2015-07-28T04:00:00Z | 2015 | 7 | 2015-07-28T04:00:00Z | 2015-07-28T20:39:13Z | 0 | 0 | 0900006481baa824 | ||
| NHTSA-2015-0070-0004 | NHTSA | ANPRM Underride Protection of Single Unit Trucks NHTSA-2015-0070 | Marianne Karth - Letter in Support | Other | Letter(s) in Support | 2015-07-28T04:00:00Z | 2015 | 7 | 2015-07-28T04:00:00Z | 2015-07-28T20:37:37Z | 0 | 0 | 0900006481baa970 | ||
| NHTSA-2015-0070-0002 | NHTSA | ANPRM Underride Protection of Single Unit Trucks NHTSA-2015-0070 | U.S. DOT/NHTSA - Letter in Support | Other | Letter(s) in Support | 2015-07-27T04:00:00Z | 2015 | 7 | 2015-07-27T04:00:00Z | 2015-07-27T20:16:51Z | 0 | 0 | 0900006481ba89d7 |
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;