documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NHTSA-2020-0093" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, withdrawn, 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-2020-0093-0055 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | JPMA Ex Parte meeting | Other | Memo | 2023-09-25T04:00:00Z | 2023 | 9 | 2023-09-25T04:00:00Z | 2023-09-25T13:43:33Z | 0 | 0 | 0900006485ff0446 | ||
| NHTSA-2020-0093-0054 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | Memorandum: Report of Evaluation of Child Restraint System Effectiveness | Other | Memorandum | 2023-03-27T04:00:00Z | 2023 | 3 | 2023-03-27T04:00:00Z | 2023-03-27T11:44:40Z | 0 | 0 | 0900006485821688 | ||
| NHTSA-2020-0093-0050 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | Memo - Ex Parte Communication with JPMA To Docket - December 2021 | Other | Memorandum | 2023-03-18T04:00:00Z | 2023 | 3 | 2023-03-18T04:00:00Z | 2023-03-22T12:02:02Z | 0 | 0 | 09000064857d44ef | ||
| NHTSA-2020-0093-0052 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | .... | Other | 2023-03-18T00:00:00Z | 2023 | 3 | 2023-03-22T12:29:41Z | 0 | 1 | 09000064857e1406 | ||||
| NHTSA-2020-0093-0053 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | ..... | Other | 2023-03-18T00:00:00Z | 2023 | 3 | 2023-03-22T12:11:31Z | 0 | 1 | 09000064857d340d | ||||
| NHTSA-2020-0093-0051 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | .... | Other | 2023-03-18T00:00:00Z | 2023 | 3 | 2023-03-22T12:30:00Z | 0 | 1 | 09000064857e1405 |
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;