documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "NHTSA" and docket_id = "NHTSA-2007-28769" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, last_modified, open_for_comment, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
- Other 3
- Notice 1
- Rule 1
- Supporting & Related Material 1
agency_id 1
- NHTSA · 6 ✖
| 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-2007-28769-0004 | NHTSA | Petition for Decision of Inconsequential Noncompliance - Ford Motor Company NHTSA-2007-28769 | Grant of Petition for Decision of Inconsequential Noncompliance: Ford Motor Co. | Rule | Federal Register Publication | 2008-03-03T05:00:00Z | 2008 | 3 | 2008-03-03T05:00:00Z | 2024-11-12T04:10:33Z | E8-04043 | 1 | 0 | 09000064803e4e91 | |
| NHTSA-2007-28769-0003 | NHTSA | Petition for Decision of Inconsequential Noncompliance - Ford Motor Company NHTSA-2007-28769 | Motor vehicle safety standards; exemption petitions, etc.: Ford Motor Co. | Notice | Notice of Receipt of Petition | 2007-10-04T04:00:00Z | 2007 | 10 | 2007-10-04T04:00:00Z | 2007-11-06T04:59:59Z | 2024-11-08T05:32:06Z | E7-19606 | 1 | 0 | 09000064802f82f8 |
| NHTSA-2007-28769-0001 | NHTSA | Petition for Decision of Inconsequential Noncompliance - Ford Motor Company NHTSA-2007-28769 | Ford Motor Company - Petition for Determination of Inconsequential Noncompliance | Other | Petition(s) | 2007-09-27T04:00:00Z | 2007 | 9 | 2007-09-27T04:00:00Z | 2007-09-29T03:59:59Z | 2024-11-12T04:08:39Z | 1 | 0 | 0900006480385606 | |
| NHTSA-2007-28769-0001-0001 | NHTSA | Petition for Decision of Inconsequential Noncompliance - Ford Motor Company NHTSA-2007-28769 | Ford Motor Company - Petition for Determination of Inconsequential Noncompliance | Other | Petition(s) | 2007-09-27T04:00:00Z | 2007 | 9 | 2007-09-27T04:00:00Z | 2007-09-28T03:59:59Z | 2024-11-12T02:17:33Z | 1 | 0 | 09000064802fe39d | |
| NHTSA-2007-28769-0002-0001 | NHTSA | Petition for Decision of Inconsequential Noncompliance - Ford Motor Company NHTSA-2007-28769 | DaimlerChrysler - Petition for Determination of Inconsequential Noncompliance | Supporting & Related Material | 2007-09-27T00:00:00Z | 2007 | 9 | 2024-11-12T02:17:33Z | 0 | 1 | 09000064802fe39e | ||||
| NHTSA-2007-28769-0002 | NHTSA | Petition for Decision of Inconsequential Noncompliance - Ford Motor Company NHTSA-2007-28769 | DaimlerChrysler - Petition for Determination of Inconsequential Noncompliance | Other | 2007-09-27T00:00:00Z | 2007 | 9 | 2024-11-12T04:08:39Z | 0 | 1 | 0900006480385607 |
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;