documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "NHTSA", document_type = "Rule" and posted_year = 1995 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-1996-1780-0001 | NHTSA | Acceleration Control System NHTSA-1996-1780 | DOT/NHTSA/NRM-12 - Request for Comments | Rule | Federal Register Publication | 1995-12-04T05:00:00Z | 1995 | 12 | 1995-12-04T05:00:00Z | 1996-02-03T04:59:59Z | 2024-11-07T18:18:58Z | 1 | 0 | 0900006480314a10 | |
| NHTSA-1996-1778-0001 | NHTSA | Fuel System Integrity Co,press... NHTSA-1996-1778 | DOT/NHTSA/NRM-12 Final Rule | Rule | Final Rule | 1995-11-24T05:00:00Z | 1995 | 11 | 1995-11-24T05:00:00Z | 1995-11-25T04:59:59Z | 2024-11-08T06:02:10Z | 1 | 0 | 09000064803149e4 | |
| NHTSA-1996-1823-0001 | NHTSA | Child Restraint System; Final Rule; Correction to Docket No. NHTSA-96-1760 NHTSA-1996-1823 | DOT/NHTSA-NRM-12 - Child Restraint Systems; Final Rule; Correction to NHTSA-96-1760 Notice | Rule | Final Rule | 1995-09-29T04:00:00Z | 1995 | 9 | 1995-09-29T04:00:00Z | 1995-09-30T03:59:59Z | 2024-11-12T02:43:00Z | 1 | 0 | 0900006480314fc7 | |
| NHTSA-1996-1828-0001 | NHTSA | Door Locks and Door Retention NHTSA-1996-1828 | DOT/NHTSA/NRM-12 - FINAL RULE | Rule | Final Rule | 1995-09-28T04:00:00Z | 1995 | 9 | 1995-09-28T04:00:00Z | 1995-10-31T04:59:59Z | 2024-11-08T06:02:33Z | 1 | 0 | 0900006480315036 | |
| NHTSA-1996-1762-0001 | NHTSA | Occupant Protection in Interior... NHTSA-1996-1762 | DOT/NHTSA/NRM-12 Final Rule | Rule | Final Rule | 1995-08-18T04:00:00Z | 1995 | 8 | 1995-08-18T04:00:00Z | 1995-08-19T03:59:59Z | 2024-11-08T06:07:27Z | 1 | 0 | 0900006480314820 | |
| NHTSA-1997-2697-0001 | NHTSA | Occupant Crash Protection: On-Off Switch (Passenger-Side); Rear-Facing Infant Restraints NHTSA-1997-2697 | U.S. DOT/NHTSA/NRM-12 - Final Rule - Occupant Crash Protection | Rule | Final Rule | 1995-05-23T04:00:00Z | 1995 | 5 | 1995-05-23T04:00:00Z | 1995-05-24T03:59:59Z | 2024-11-12T02:58:08Z | 1 | 0 | 090000648031af37 | |
| NHTSA-1996-1744-0001 | NHTSA | Air Brake Systems NHTSA-1996-1744 | DOT/NHTSA/NRM - 12 - FINAL RULE | Rule | Final Rule | 1995-01-12T05:00:00Z | 1995 | 1 | 1995-01-12T05:00:00Z | 1995-02-14T04:59:59Z | 2024-11-08T06:01:28Z | 1 | 0 | 0900006480314575 |
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;