documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "NHTSA-2021-0049" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2021-0049-0082 | NHTSA | Model Year 2022 NCAP Test Reports NHTSA-2021-0049 | 2022 Ford Escape SEL PHEV 5-Door SUV NCAP - Final Report Rev1 | Other | Report | 2024-03-13T04:00:00Z | 2024 | 3 | 2024-03-13T04:00:00Z | 2024-03-15T18:37:14Z | 0 | 0 | 0900006486479642 | ||
| NHTSA-2021-0049-0081 | NHTSA | Model Year 2022 NCAP Test Reports NHTSA-2021-0049 | M20220204 2022 Ford F-150 Lightning 4x4 SuperCrew Frontal NCAP - Final Report Rev1 | Other | Report | 2024-01-11T05:00:00Z | 2024 | 1 | 2024-01-11T05:00:00Z | 2024-03-15T18:37:41Z | 0 | 0 | 0900006486392894 | ||
| NHTSA-2021-0049-0080 | NHTSA | Model Year 2022 NCAP Test Reports NHTSA-2021-0049 | O20225105 2022 Lexus NX 350h AWD 5-Door SUV Side NCAP MDB - Final Report | Other | Report | 2024-01-10T05:00:00Z | 2024 | 1 | 2024-01-10T05:00:00Z | 2024-01-10T22:33:41Z | 0 | 0 | 090000648639168a | ||
| NHTSA-2021-0049-0079 | NHTSA | Model Year 2022 NCAP Test Reports NHTSA-2021-0049 | M20220203 2022 Ford Expedition MAX XLT 5-Door SUV Frontal NCAP - Final Report | Other | Report | 2024-01-10T05:00:00Z | 2024 | 1 | 2024-01-10T05:00:00Z | 2024-01-10T22:32:40Z | 0 | 0 | 0900006486391679 | ||
| NHTSA-2021-0049-0074 | NHTSA | Model Year 2022 NCAP Test Reports NHTSA-2021-0049 | M20220212 2022 Ford Ranger XLT SuperCab 4x4 Frontal NCAP - Final Report | Other | Report | 2024-01-10T05:00:00Z | 2024 | 1 | 2024-01-10T05:00:00Z | 2024-01-10T22:26:48Z | 0 | 0 | 090000648639163e | ||
| NHTSA-2021-0049-0078 | NHTSA | Model Year 2022 NCAP Test Reports NHTSA-2021-0049 | O20225100 2022 Toyota Corolla Cross LE-AWD 5-Door SUV Frontal NCAP - Final Report | Other | Report | 2024-01-10T05:00:00Z | 2024 | 1 | 2024-01-10T05:00:00Z | 2024-01-10T22:31:39Z | 0 | 0 | 0900006486391677 | ||
| NHTSA-2021-0049-0076 | NHTSA | Model Year 2022 NCAP Test Reports NHTSA-2021-0049 | O20225103 2022 Lexus NX 250 AWD 5-Door SUV Frontal NCAP - Final Report | Other | Report | 2024-01-10T05:00:00Z | 2024 | 1 | 2024-01-10T05:00:00Z | 2024-01-10T22:29:08Z | 0 | 0 | 0900006486391673 | ||
| NHTSA-2021-0049-0077 | NHTSA | Model Year 2022 NCAP Test Reports NHTSA-2021-0049 | M20220216 2022 Ford F-150 XLT 4x4 SuperCrew HEV Frontal NCAP - Final Report | Other | Report | 2024-01-10T05:00:00Z | 2024 | 1 | 2024-01-10T05:00:00Z | 2024-01-10T22:30:07Z | 0 | 0 | 0900006486391675 | ||
| NHTSA-2021-0049-0075 | NHTSA | Model Year 2022 NCAP Test Reports NHTSA-2021-0049 | M20225900 2022 Polestar 2 5-Door Hatchback Frontal NCAP - Final Report | Other | Report | 2024-01-10T05:00:00Z | 2024 | 1 | 2024-01-10T05:00:00Z | 2024-01-10T22:27:55Z | 0 | 0 | 0900006486391640 | ||
| NHTSA-2021-0049-0073 | NHTSA | Model Year 2022 NCAP Test Reports NHTSA-2021-0049 | O20225104 2022 Lexus NX 250 5-Door SUV Side NCAP Pole - Final Report | Other | Report | 2024-01-08T05:00:00Z | 2024 | 1 | 2024-01-08T05:00:00Z | 2024-01-08T18:02:55Z | 0 | 0 | 0900006486385545 |
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;