documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "NHTSA" and docket_id = "NHTSA-2010-0024" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, open_for_comment, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Other 2
- Notice 1
- Rule 1
- Supporting & Related Material 1
agency_id 1
- NHTSA · 5 ✖
| 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-0024-0005 | NHTSA | Continental Tire North America, Inc. – Nonconforming Tires NHTSA-2010-0024 | Grant of Petition forDecision of Inconsequential Noncompliance: Continental Tire North America, Inc. | Notice | Notice of Change | 2011-11-17T05:00:00Z | 2011 | 11 | 2011-11-17T05:00:00Z | 2024-11-11T21:35:55Z | 2011-29740 | 1 | 0 | 0900006480f6e65d | |
| NHTSA-2010-0024-0004 | NHTSA | Continental Tire North America, Inc. – Nonconforming Tires NHTSA-2010-0024 | Continental Tire Labeling | Other | Report | 2010-06-23T04:00:00Z | 2010 | 6 | 2024-11-07T22:17:30Z | 1 | 0 | 0900006480b07593 | |||
| NHTSA-2010-0024-0003 | NHTSA | Continental Tire North America, Inc. – Nonconforming Tires NHTSA-2010-0024 | Continental Tire North America Inc. - Receipt of Petition for Decision of Inconsequential Non-Compliance | Other | Acknowledgement Letter/Receipt | 2010-04-15T04:00:00Z | 2010 | 4 | 2010-04-15T04:00:00Z | 2013-08-11T04:39:08Z | 0 | 0 | 0900006480ad82a4 | ||
| NHTSA-2010-0024-0002 | NHTSA | Continental Tire North America, Inc. – Nonconforming Tires NHTSA-2010-0024 | Continental Tire North America Inc. - Receipt of Petition for Decision of Inconsequential Non-Compliance | Supporting & Related Material | 2010-04-15T00:00:00Z | 2010 | 4 | 2010-04-15T15:41:04Z | 0 | 1 | 0900006480ace654 | ||||
| NHTSA-2010-0024-0001 | NHTSA | Continental Tire North America, Inc. – Nonconforming Tires NHTSA-2010-0024 | Receipt of Petition for Decision of Inconsequential Noncompliance: Continental Tire North America, Inc. | Rule | Federal Register Publication | 2010-04-07T04:00:00Z | 2010 | 4 | 2010-04-07T04:00:00Z | 2010-05-08T03:59:59Z | 2024-11-12T04:52:37Z | 2010-07870 | 1 | 0 | 0900006480ad1ed7 |
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;