documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FMCSA-2004-18940" and posted_year = 2004 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMCSA-2004-18940-0009 | FMCSA | Electronic On-Board Recorders for Hours-of-Service FMCSA-2004-18940 | Advance Notice of Proposed Rulemaking; Request for Comments | Rule | Federal Register Publication | 2004-09-01T04:00:00Z | 2004 | 9 | 2004-09-01T04:00:00Z | 2004-09-02T03:59:59Z | 2024-11-08T04:53:21Z | 1 | 0 | 09000064802caafb | |
| FMCSA-2004-18940-0010 | FMCSA | Electronic On-Board Recorders for Hours-of-Service FMCSA-2004-18940 | Preliminary Environmental Assessment | Supporting & Related Material | Environmental Assessment | 2004-09-01T04:00:00Z | 2004 | 9 | 2024-11-11T23:31:13Z | 0 | 0 | 09000064802ca4ea | |||
| FMCSA-2004-18940-0001 | FMCSA | Electronic On-Board Recorders for Hours-of-Service FMCSA-2004-18940 | Letter to Delphi Corporation | Other | Letter(s) | 2004-08-26T04:00:00Z | 2004 | 8 | 2004-08-26T04:00:00Z | 2004-08-27T03:59:59Z | 2024-11-11T23:31:13Z | 1 | 0 | 09000064802ca4e9 | |
| FMCSA-2004-18940-0004 | FMCSA | Electronic On-Board Recorders for Hours-of-Service FMCSA-2004-18940 | Memorandum of Understanding | Other | Memo, Action Memo or Letter | 2004-08-26T04:00:00Z | 2004 | 8 | 2004-08-26T04:00:00Z | 2004-08-27T03:59:59Z | 2024-11-11T23:29:25Z | 1 | 0 | 09000064802ca6d0 | |
| FMCSA-2004-18940-0003 | FMCSA | Electronic On-Board Recorders for Hours-of-Service FMCSA-2004-18940 | On-Board Recorders: Literature and Technology Review | Other | Report | 2004-08-26T04:00:00Z | 2004 | 8 | 2004-08-26T04:00:00Z | 2004-08-27T03:59:59Z | 2024-11-11T23:35:10Z | 1 | 0 | 09000064802ca661 | |
| FMCSA-2004-18940-0008 | FMCSA | Electronic On-Board Recorders for Hours-of-Service FMCSA-2004-18940 | Letter to Abbott Tachograph | Other | Letter(s) | 2004-08-26T04:00:00Z | 2004 | 8 | 2004-08-26T04:00:00Z | 2004-08-27T03:59:59Z | 2024-11-08T05:01:16Z | 1 | 0 | 09000064802caa28 | |
| FMCSA-2004-18940-0005 | FMCSA | Electronic On-Board Recorders for Hours-of-Service FMCSA-2004-18940 | Memorandum of Understanding | Other | Memo, Action Memo or Letter | 2004-08-26T04:00:00Z | 2004 | 8 | 2004-08-26T04:00:00Z | 2004-08-27T03:59:59Z | 2024-11-08T05:02:02Z | 1 | 0 | 09000064802ca8a2 | |
| FMCSA-2004-18940-0002 | FMCSA | Electronic On-Board Recorders for Hours-of-Service FMCSA-2004-18940 | Hours of Service (HOS) Research and Analysis Modules | Other | Report | 2004-08-26T04:00:00Z | 2004 | 8 | 2004-08-26T04:00:00Z | 2004-08-27T03:59:59Z | 2024-11-11T23:35:10Z | 1 | 0 | 09000064802ca5ef | |
| FMCSA-2004-18940-0006 | FMCSA | Electronic On-Board Recorders for Hours-of-Service FMCSA-2004-18940 | On-board Automated Recording for Commercial Motor Vehicle Driver's Hours-of-Service Compliance: the European Experience | Other | Report | 2004-08-26T04:00:00Z | 2004 | 8 | 2004-08-26T04:00:00Z | 2004-08-27T03:59:59Z | 2024-11-08T05:02:56Z | 1 | 0 | 09000064802ca911 | |
| FMCSA-2004-18940-0007 | FMCSA | Electronic On-Board Recorders for Hours-of-Service FMCSA-2004-18940 | Electronic Recorder Study: Final Report | Other | Report | 2004-08-26T04:00:00Z | 2004 | 8 | 2004-08-26T04:00:00Z | 2004-08-27T03:59:59Z | 2024-11-08T05:00:09Z | 1 | 0 | 09000064802ca981 |
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;