documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "NHTSA-1998-3397" and posted_year = 1998 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, open_for_comment, 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-1998-3397-0016 | NHTSA | Part 564 - Replaceable Light Source Information NHTSA-1998-3397 | U.S. DOT/NHTSA - Appendix B - Information on Replaceable Light Source, D2S | Other | Memo, Action Memo or Letter | 1998-07-29T04:00:00Z | 1998 | 7 | 1998-07-29T04:00:00Z | 1998-07-30T03:59:59Z | 2011-01-07T14:13:41Z | 0 | 0 | 09000064802a521a | |
| NHTSA-1998-3397-0003 | NHTSA | Part 564 - Replaceable Light Source Information NHTSA-1998-3397 | U.S. DOT/NHTSA - Transmittal to the Part 564 - Replaceable Light Source; and Information o Replaceable Light Source Type HIR2 | Other | Memo, Action Memo or Letter | 1998-05-15T04:00:00Z | 1998 | 5 | 1998-05-15T04:00:00Z | 1998-05-16T03:59:59Z | 2011-01-07T14:12:07Z | 0 | 0 | 09000064802a5229 | |
| NHTSA-1998-3397-0002 | NHTSA | Part 564 - Replaceable Light Source Information NHTSA-1998-3397 | U.S. DOT/NHTSA - Transmittal to the Part 564 - Replaceable Light Source; Information on Replaceable Source, ANSI No. 9011/HIR1 | Other | Memo, Action Memo or Letter | 1998-05-15T04:00:00Z | 1998 | 5 | 1998-05-15T04:00:00Z | 1998-05-16T03:59:59Z | 2011-01-07T14:12:01Z | 0 | 0 | 09000064802a521e | |
| NHTSA-1998-3397-0007 | NHTSA | Part 564 - Replaceable Light Source Information NHTSA-1998-3397 | U.S. DOT/NHTSA - Submission of Attachments I and II - Petition of Ford Motor Company (Ford) | Other | Memo, Action Memo or Letter | 1998-04-19T04:00:00Z | 1998 | 4 | 1998-04-19T04:00:00Z | 1998-04-20T03:59:59Z | 2011-01-07T14:12:37Z | 0 | 0 | 09000064802a5255 | |
| NHTSA-1998-3397-0026 | NHTSA | Part 564 - Replaceable Light Source Information NHTSA-1998-3397 | U.S. DOT/NHTSA - Appendix B; Information on Stanley Electric Company, LTD.; Ballasts for Replaceable Light Sources D2R and D2S | Other | Memo, Action Memo or Letter | 1998-03-12T05:00:00Z | 1998 | 3 | 1998-03-12T05:00:00Z | 1998-03-13T04:59:59Z | 2011-01-07T14:14:49Z | 0 | 0 | 09000064802a5225 | |
| NHTSA-1998-3397-0001 | NHTSA | Part 564 - Replaceable Light Source Information NHTSA-1998-3397 | U.S. DOT/NHTSA - Replaceable Light Source Information - Part 564: Information from Osram Sylvania Inc. | Other | Memo, Action Memo or Letter | 1998-01-28T05:00:00Z | 1998 | 1 | 1998-01-28T05:00:00Z | 1998-01-29T04:59:59Z | 2024-11-08T03:57:37Z | 1 | 0 | 09000064802a5213 |
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;