documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where agency_id = "NHTSA", document_type = "Rule" and posted_year = 1994 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2696-0001 | NHTSA | Occupant Crash Protection: Safety Belts; Air Bags NHTSA-1997-2696 | U.S. DOT/NHTSA - Final Rule - Occupant Crash Protection | Rule | Final Rule | 1994-11-29T05:00:00Z | 1994 | 11 | 1994-11-29T05:00:00Z | 1994-11-30T04:59:59Z | 2024-11-12T02:56:33Z | 1 | 0 | 090000648031af29 | |
| NHTSA-1996-1746-0001 | NHTSA | Occupant Crash Protection: Rollover Prevention NHTSA-1996-1746 | U.S.DOT/NHTSA/NRM - 12 - FINAL RULE | Rule | Final Rule | 1994-06-28T04:00:00Z | 1994 | 6 | 1994-06-28T04:00:00Z | 1994-08-30T03:59:59Z | 2024-11-07T18:22:27Z | 1 | 0 | 09000064803145bf | |
| NHTSA-1996-1734-0001 | NHTSA | Fuel Systems Integrity Compress... NHTSA-1996-1734 | DOT/NHTSA/NRM-12; Fuel System Integrity Of Compressed Natural Gas Vehicles Over 4536 Kilograms Gross Vehicle Weight Rating | Rule | Federal Register Publication | 1994-05-06T04:00:00Z | 1994 | 5 | 1994-05-06T04:00:00Z | 1994-07-06T03:59:59Z | 2024-11-07T18:16:45Z | 1 | 0 | 090000648031445e | |
| NHTSA-1996-1731-0001 | NHTSA | Electrical Vehicles NHTSA-1996-1731 | DOT/NHTSA/NRM-12Final Rule | Rule | Final Rule | 1994-03-09T05:00:00Z | 1994 | 3 | 1994-03-09T05:00:00Z | 1994-04-05T03:59:59Z | 2024-11-07T18:14:36Z | 1 | 0 | 09000064803143cf |
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;