documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NHTSA-2020-0067" 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-0067-0012 | NHTSA | Standard Reference Test Tire - Notice of proposed rulemaking (NPRM) NHTSA-2020-0067 | Federal Motor Vehicle Safety Standards, Consumer Information: Standard Reference Test Tire | Rule | Final Rule | 2022-06-08T04:00:00Z | 2022 | 6 | 2022-06-08T04:00:00Z | 2024-11-07T00:40:21Z | 2022-12243 | 1 | 0 | 090000648514d00d | |
| NHTSA-2020-0067-0011 | NHTSA | Standard Reference Test Tire - Notice of proposed rulemaking (NPRM) NHTSA-2020-0067 | BCWR Table with Conversion Factor Docket | Other | Additional Information | 2022-01-07T05:00:00Z | 2022 | 1 | 2022-01-07T05:00:00Z | 2022-01-07T20:59:20Z | 0 | 0 | 0900006484f14289 | ||
| NHTSA-2020-0067-0005 | NHTSA | Standard Reference Test Tire - Notice of proposed rulemaking (NPRM) NHTSA-2020-0067 | BCWR Test Dates | Other | Additional Information | 2021-09-01T04:00:00Z | 2021 | 9 | 2021-09-01T04:00:00Z | 2021-09-01T15:43:27Z | 0 | 0 | 0900006484d26676 | ||
| NHTSA-2020-0067-0004 | NHTSA | Standard Reference Test Tire - Notice of proposed rulemaking (NPRM) NHTSA-2020-0067 | NHTSA San Angelo Test Facilities Tire Storage information | Other | Letter(s) | 2021-09-01T04:00:00Z | 2021 | 9 | 2021-09-01T04:00:00Z | 2021-09-01T15:39:18Z | 0 | 0 | 0900006484d26674 | ||
| NHTSA-2020-0067-0002 | NHTSA | Standard Reference Test Tire - Notice of proposed rulemaking (NPRM) NHTSA-2020-0067 | Tire Study | Other | Studies/Government/Public | 2021-08-09T04:00:00Z | 2021 | 8 | 2021-08-09T04:00:00Z | 2021-08-09T19:12:43Z | 0 | 0 | 0900006484c377ac | ||
| NHTSA-2020-0067-0001 | NHTSA | Standard Reference Test Tire - Notice of proposed rulemaking (NPRM) NHTSA-2020-0067 | Standard Reference Test Tire | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2021-08-05T04:00:00Z | 2021 | 8 | 2021-08-05T04:00:00Z | 2021-09-08T03:59:59Z | 2024-11-06T23:49:23Z | 2021-15361 | 1 | 0 | 0900006484c2ac8e |
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;