documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NHTSA-2010-0132" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2010-0132-0011 | NHTSA | New Pneumatic Tires NHTSA-2010-0132 | Federal Motor Vehicle Safety Standards: New Pneumatic Tires for Motor Vehicles With a Gross VehicleWeight Rating, etc. | Rule | Federal Register Publication | 2010-11-30T05:00:00Z | 2010 | 11 | 2010-11-30T05:00:00Z | 2010-12-30T04:59:59Z | 2024-11-07T22:25:42Z | 2010-30096 | 1 | 0 | 0900006480ba952a |
| NHTSA-2010-0132-0010 | NHTSA | New Pneumatic Tires NHTSA-2010-0132 | Rubber Manufacturers Association - Report | Other | Report | 2010-11-10T05:00:00Z | 2010 | 11 | 2010-11-10T05:00:00Z | 2013-08-11T04:42:52Z | 0 | 0 | 0900006480b8584e | ||
| NHTSA-2010-0132-0008 | NHTSA | New Pneumatic Tires NHTSA-2010-0132 | Rubber Manufacturers Association - Request to Extend Comment Period | Other | Extension of Time | 2010-10-26T04:00:00Z | 2010 | 10 | 2010-10-26T04:00:00Z | 2013-07-27T23:35:38Z | 0 | 0 | 0900006480b7773e | ||
| NHTSA-2010-0132-0003 | NHTSA | New Pneumatic Tires NHTSA-2010-0132 | Attached (2) | Other | Other | 2010-10-12T04:00:00Z | 2010 | 10 | 2010-10-12T04:00:00Z | 2013-07-27T23:33:33Z | 0 | 0 | 0900006480b67d74 | ||
| NHTSA-2010-0132-0002 | NHTSA | New Pneumatic Tires NHTSA-2010-0132 | U.S. DOT/NHTSA - Preliminary Regulatory Evaluation | Other | Other | 2010-10-01T04:00:00Z | 2010 | 10 | 2010-10-01T04:00:00Z | 2013-07-27T23:33:06Z | 0 | 0 | 0900006480b6473b | ||
| NHTSA-2010-0132-0001 | NHTSA | New Pneumatic Tires NHTSA-2010-0132 | Federal Motor Vehicle Safety Standards: New Pneumatic Tires for Motor Vehicles with a GVWR of More Than 410,000 pounds andMotorcycles | Rule | Federal Register Publication | 2010-09-29T04:00:00Z | 2010 | 9 | 2010-09-29T04:00:00Z | 2010-11-30T04:59:59Z | 2017-10-06T13:01:42Z | 2010-24347 | 0 | 0 | 0900006480b6305b |
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;