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-2000-7291" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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-2000-7291-0006 | NHTSA | General Motors Corporation; Receipt of Application for Determination of Inconsequential Non-Compliance NHTSA-2000-7291 | General Motors North America - Additional Information | Other | Additional Information | 2001-04-16T04:00:00Z | 2001 | 4 | 2001-04-16T04:00:00Z | 2001-04-18T03:59:59Z | 2008-01-08T20:07:40Z | 0 | 0 | 090000648033af58 | |
| NHTSA-2000-7291-0005 | NHTSA | General Motors Corporation; Receipt of Application for Determination of Inconsequential Non-Compliance NHTSA-2000-7291 | U.S. DOT/NHTSA - General Motors Corporation; Denial of Application for | Rule | Federal Register Publication | 2001-04-09T04:00:00Z | 2001 | 4 | 2001-04-09T04:00:00Z | 2001-04-10T03:59:59Z | 2008-01-08T20:12:57Z | 0 | 0 | 090000648033af57 | |
| NHTSA-2000-7291-0002 | NHTSA | General Motors Corporation; Receipt of Application for Determination of Inconsequential Non-Compliance NHTSA-2000-7291 | U.S. DOT/NHTSA - Inconsequentiality Petition from GM-Std 208 | Other | Memo, Action Memo or Letter | 2001-01-29T05:00:00Z | 2001 | 1 | 2001-01-29T05:00:00Z | 2001-01-31T04:59:59Z | 2008-01-08T20:07:40Z | 0 | 0 | 090000648033af54 | |
| NHTSA-2000-7291-0003 | NHTSA | General Motors Corporation; Receipt of Application for Determination of Inconsequential Non-Compliance NHTSA-2000-7291 | U.S. DOT/NHTSA - Response to Martinez & Turek, Inc.'s December 20, 2000 letter | Other | Response(s) | 2001-01-25T05:00:00Z | 2001 | 1 | 2001-01-25T05:00:00Z | 2001-01-31T04:59:59Z | 2008-01-08T20:11:50Z | 0 | 0 | 090000648033af55 | |
| NHTSA-2000-7291-0004 | NHTSA | General Motors Corporation; Receipt of Application for Determination of Inconsequential Non-Compliance NHTSA-2000-7291 | U.S. DOT/NHTSA - Response to Ravens, Inc.'s Letter | Other | Response(s) | 2001-01-25T05:00:00Z | 2001 | 1 | 2001-01-25T05:00:00Z | 2001-01-31T04:59:59Z | 2008-01-08T20:10:27Z | 0 | 0 | 090000648033af56 | |
| NHTSA-2000-7291-0001 | NHTSA | General Motors Corporation; Receipt of Application for Determination of Inconsequential Non-Compliance NHTSA-2000-7291 | U.S. DOT/NHTSA - General Motors Corporation; Receipt of Application for Determination of Inconsequential Non-Compliance | Rule | Federal Register Publication | 2000-05-26T04:00:00Z | 2000 | 5 | 2000-05-26T04:00:00Z | 2000-05-27T03:59:59Z | 2008-01-08T20:12:57Z | 0 | 0 | 090000648033af53 |
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;