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 = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2020-0093-0048 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | Memo Ex Parte - JPMA Technical Meeting - Final Locked (002) | Other | Memorandum in Support | 2021-07-30T04:00:00Z | 2021 | 7 | 2021-07-30T04:00:00Z | 2021-07-30T12:58:53Z | 0 | 0 | 0900006484c17e98 | ||
| NHTSA-2020-0093-0034 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | Volvo Car Corporation - Petition for Rulemaking | Other | Petition for Rulemaking | 2021-04-05T04:00:00Z | 2021 | 4 | 2021-04-05T04:00:00Z | 2021-04-05T12:01:14Z | 0 | 0 | 0900006484a996d7 | ||
| NHTSA-2020-0093-0030 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | Ex Parte Communication with JPMA Memo to Docket Dec 2 CE2 SK df2 | Other | Memorandum | 2021-03-26T04:00:00Z | 2021 | 3 | 2021-03-26T04:00:00Z | 2021-03-26T15:43:22Z | 0 | 0 | 0900006484a8097c | ||
| NHTSA-2020-0093-0031 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | Ex Parte (2) Communication with JPMA Memo to Docket foam | Other | Memorandum | 2021-03-26T04:00:00Z | 2021 | 3 | 2021-03-26T04:00:00Z | 2021-03-26T17:23:35Z | 0 | 0 | 0900006484a80eed | ||
| NHTSA-2020-0093-0029 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | Evaluation of Foam Specifications for Use on Proposed FMVSS No. 213 Test with Cover Letter | Other | Report | 2021-03-22T04:00:00Z | 2021 | 3 | 2021-03-22T04:00:00Z | 2021-03-22T18:30:42Z | 0 | 0 | 0900006484a74335 | ||
| NHTSA-2020-0093-0021 | NHTSA | NPRM, Request for comment - Frontal upgrade of FMVSS 213 NHTSA-2020-0093 | Federal Motor Vehicle Safety Standards: Child Restraint Systems, Incorporation by Reference | Proposed Rule | Extension of Comment Period | 2021-01-04T05:00:00Z | 2021 | 1 | 2021-01-04T05:00:00Z | 2021-04-06T03:59:59Z | 2024-11-12T23:27:31Z | 2020-29111 | 1 | 0 | 09000064849dafbc |
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;