documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2004-19608" and posted_year = 2006 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMCSA-2004-19608-2492 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Jack James Elias - Comments | Supporting & Related Material | Supplement | 2006-08-18T04:00:00Z | 2006 | 8 | 2008-07-28T12:47:05Z | 0 | 0 | 0900006480358aba | |||
| FMCSA-2004-19608-2488 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | FMCSA Response to Petition form Paschall Truck Lines, Inc. Gas - Letter | Other | Letter(s) | 2006-07-13T04:00:00Z | 2006 | 7 | 2006-07-13T04:00:00Z | 2006-07-15T03:59:59Z | 2008-01-12T00:41:01Z | 0 | 0 | 0900006480358ab5 | |
| FMCSA-2004-19608-2486 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | A. Passmore and Sons, Inc. - Letter | Other | Letter(s) | 2006-06-29T04:00:00Z | 2006 | 6 | 2006-06-29T04:00:00Z | 2006-06-30T03:59:59Z | 2008-01-12T00:42:30Z | 0 | 0 | 0900006480358ab3 | |
| FMCSA-2004-19608-2479 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | FMCSA Response to Petition form National Propane Gas Association - Letter | Other | Letter(s) | 2006-06-21T04:00:00Z | 2006 | 6 | 2006-06-21T04:00:00Z | 2006-06-23T03:59:59Z | 2008-01-12T00:40:44Z | 0 | 0 | 0900006480358aab | |
| FMCSA-2004-19608-2460 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | FMCSA Response to Petition From Insurance Institute for Highway Safety (IIHS) - Letter | Other | Letter(s) | 2006-03-03T05:00:00Z | 2006 | 3 | 2006-03-03T05:00:00Z | 2006-03-04T04:59:59Z | 2008-01-12T00:40:23Z | 0 | 0 | 0900006480358a97 | |
| FMCSA-2004-19608-2458 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | U.S. DOT/FMSCA - Memo For The Record with Tables: 2003-2004 FARS Data | Other | Memo, Action Memo or Letter | 2006-02-24T05:00:00Z | 2006 | 2 | 2006-02-24T05:00:00Z | 2006-02-28T04:59:59Z | 2008-01-12T00:42:14Z | 0 | 0 | 0900006480358a94 | |
| FMCSA-2004-19608-2453 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Davis Cartage Co. - Petition | Other | Petition(s) | 2006-01-24T05:00:00Z | 2006 | 1 | 2006-01-24T05:00:00Z | 2006-01-25T04:59:59Z | 2008-01-12T00:41:52Z | 0 | 0 | 0900006480358a8f |
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;