documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "NHTSA", document_type = "Notice" and posted_year = 1994 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-1997-2811-0001 | NHTSA | Occupant Crash Protection: Air Bags; On-Off Switch (Passenger-Side) NHTSA-1997-2811 | U. S. DOT/NHTSA/NRM-12 - Notice of Proposed Rulemaking (NPRM) - Occupant Crash Protection | Notice | Notice of Proposed Rulemaking (NPRM) | 1994-10-07T04:00:00Z | 1994 | 10 | 1994-10-07T04:00:00Z | 1994-12-07T04:59:59Z | 2024-11-07T18:28:42Z | 1 | 0 | 090000648031c1a7 | |
| NHTSA-1996-1740-0001 | NHTSA | Driving Range Determination for Fuel System Integrity NHTSA-1996-1740 | DOT/NHTSA/NRM - 12 - PROPOSED RULEMAKING | Notice | Notice of Proposed Rulemaking (NPRM) | 1994-09-22T04:00:00Z | 1994 | 9 | 1994-09-22T04:00:00Z | 1994-11-22T04:59:59Z | 2024-11-08T06:00:47Z | 1 | 0 | 0900006480314504 | |
| NHTSA-1996-1743-0001 | NHTSA | Mfg. Incentives for Alternative NHTSA-1996-1743 | DOT/NHTSA/NRM-12 - Notice of Propsosed Rulemaking | Notice | Notice of Proposed Rulemaking (NPRM) | 1994-09-19T04:00:00Z | 1994 | 9 | 1994-09-19T04:00:00Z | 1995-02-18T04:59:59Z | 2024-11-08T06:01:28Z | 1 | 0 | 0900006480314561 | |
| NHTSA-1996-1739-0001 | NHTSA | Door Locks and Door Retention NHTSA-1996-1739 | DOT/NHTSA/NRM-12Notice of Proposed Rulemaking | Notice | Notice of Proposed Rulemaking (NPRM) | 1994-08-30T04:00:00Z | 1994 | 8 | 1994-08-30T04:00:00Z | 1994-11-01T04:59:59Z | 2024-11-08T06:06:53Z | 1 | 0 | 09000064803144dc | |
| NHTSA-1996-1735-0001 | NHTSA | Fuel System Integrity NHTSA-1996-1735 | DOT/NHTSA/NRM-12 Notice of Proposed Rulemaking (NPRM) | Notice | Notice of Proposed Rulemaking (NPRM) | 1994-05-17T04:00:00Z | 1994 | 5 | 1994-05-17T04:00:00Z | 1994-07-19T03:59:59Z | 2024-11-08T06:05:47Z | 1 | 0 | 0900006480314480 | |
| NHTSA-1996-1732-0001 | NHTSA | Child Seating Systems NHTSA-1996-1732 | DOT/NHTSA/NRM-12 Notice of Proposed Rulemaking | Notice | Notice of Proposed Rulemaking (NPRM) | 1994-03-16T05:00:00Z | 1994 | 3 | 1994-03-16T05:00:00Z | 1994-05-17T03:59:59Z | 2024-11-08T05:59:46Z | 1 | 0 | 09000064803143e3 |
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;