documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "NHTSA-2020-0032" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-0032-0007 | NHTSA | Injury Criteria for the THOR 50th Male ATD NHTSA-2020-0032 | THOR-50M Injury Criteria Report - Compiled Comments and Responses | Other | Report | 2021-10-28T04:00:00Z | 2021 | 10 | 2021-10-28T04:00:00Z | 2021-10-28T12:06:45Z | 0 | 0 | 0900006484dfae5a | ||
| NHTSA-2020-0032-0003 | NHTSA | Injury Criteria for the THOR 50th Male ATD NHTSA-2020-0032 | Injury Criteria for the THOR 50th Male ATD - for peer review | Other | Report | 2021-09-16T04:00:00Z | 2021 | 9 | 2021-09-16T04:00:00Z | 2021-09-16T15:48:55Z | 0 | 0 | 0900006484d86149 | ||
| NHTSA-2020-0032-0001 | NHTSA | Injury Criteria for the THOR 50th Male ATD NHTSA-2020-0032 | Peer Review Charge - THOR-50M Injury Criteria Report | Other | Report | 2021-09-16T04:00:00Z | 2021 | 9 | 2021-09-16T04:00:00Z | 2021-09-16T15:48:28Z | 0 | 0 | 0900006484d86144 | ||
| NHTSA-2020-0032-0004 | NHTSA | Injury Criteria for the THOR 50th Male ATD NHTSA-2020-0032 | Injury Criteria for the THOR 50th Male ATD - revised | Other | Report | 2021-09-16T04:00:00Z | 2021 | 9 | 2021-09-16T04:00:00Z | 2021-09-16T15:49:08Z | 0 | 0 | 0900006484d86202 | ||
| NHTSA-2020-0032-0002 | NHTSA | Injury Criteria for the THOR 50th Male ATD NHTSA-2020-0032 | Peer Reviewers and Credentials - THOR-50M Injury Criteria | Other | Report | 2021-09-16T04:00:00Z | 2021 | 9 | 2021-09-16T04:00:00Z | 2021-09-16T15:48:39Z | 0 | 0 | 0900006484d86146 | ||
| NHTSA-2020-0032-0006 | NHTSA | Injury Criteria for the THOR 50th Male ATD NHTSA-2020-0032 | Peer review comments and responses - THOR-50M Injury Criteria | Other | 2021-09-16T00:00:00Z | 2021 | 9 | 2021-10-28T12:04:31Z | 0 | 1 | 0900006484d86278 | ||||
| NHTSA-2020-0032-0005 | NHTSA | Injury Criteria for the THOR 50th Male ATD NHTSA-2020-0032 | Injury Criteria for the THOR 50th Male ATD | Other | 2021-09-16T00:00:00Z | 2021 | 9 | 2021-10-28T12:03:50Z | 0 | 1 | 0900006484d86276 |
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;