documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FMCSA-2004-19608" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, open_for_comment, withdrawn, posted_date (date), comment_start_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-3530 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | William B. Trescott - Third Petition to Reconsider the Hours of Service of Drivers Final Rule | Other | Petition for Reconsideration | 2009-04-15T04:00:00Z | 2009 | 4 | 2009-04-15T04:00:00Z | 2009-04-15T16:18:35Z | 0 | 0 | 090000648095462a | ||
| FMCSA-2004-19608-3523 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | FMCSA Response to Petition for Reconsideration from Wm. Trescott (Associated with FMCSA-2004-19608-3512) | Other | Response(s) | 2009-01-26T05:00:00Z | 2009 | 1 | 2009-01-26T05:00:00Z | 2024-11-12T04:28:09Z | 1 | 0 | 0900006480830710 | ||
| FMCSA-2004-19608-3524 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | FMCSA Response to Petition for Reconsideration from Insurance Institute for Highway Safety (Associated with FMCSA-2004-19608-3515) | Other | Response(s) | 2009-01-26T05:00:00Z | 2009 | 1 | 2009-01-26T05:00:00Z | 2024-11-12T04:33:44Z | 1 | 0 | 0900006480830759 | ||
| FMCSA-2004-19608-3525 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Petition for Reconsideration | Other | Petition for Reconsideration | 2009-01-26T05:00:00Z | 2009 | 1 | 2009-01-26T05:00:00Z | 2024-11-12T04:31:18Z | 1 | 0 | 0900006480830e5c | ||
| FMCSA-2004-19608-3522 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | FMCSA Response to Petition for Reconsideration from William Trescott (Associated with FMCSA-2004-19608-3512) | Other | 2009-01-22T00:00:00Z | 2009 | 1 | 2024-11-12T04:33:36Z | 0 | 1 | 090000648082a855 | ||||
| FMCSA-2004-19608-3521 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Hanowski Richard J. R.L. Olson, J. Bocanegra, and J.S. Hickman. "Analysis Risk as a Function of Driving-Hour: Assessment of Driving Hours 1 through 11." Blacksburg, Virginia: Virginia Tech Transportation Institute, January 2008, Report No. FMCSA-RRR-08-002 | Other | Report | 2009-01-14T05:00:00Z | 2009 | 1 | 2024-11-12T04:30:56Z | 1 | 0 | 090000648081f346 | |||
| FMCSA-2004-19608-3520 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Large Truck Crash Causation Study; Analytical User's Manual, U.S. Department of Transportation, June 2006 | Other | Report | 2009-01-13T05:00:00Z | 2009 | 1 | 2024-11-12T04:30:50Z | 1 | 0 | 090000648081d5a2 | |||
| FMCSA-2004-19608-3519 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Petition for Reconsideration | Other | Petition for Reconsideration | 2009-01-08T05:00:00Z | 2009 | 1 | 2009-01-08T05:00:00Z | 2024-11-12T04:32:40Z | 1 | 0 | 0900006480814429 | ||
| FMCSA-2004-19608-3518 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Hours of Service of Drivers - Final Rule: EO 12866 and CRA Requirements | Other | OMB Review | 2009-01-07T05:00:00Z | 2009 | 1 | 2009-01-07T05:00:00Z | 2024-11-12T04:34:37Z | 1 | 0 | 0900006480812184 | ||
| FMCSA-2004-19608-3517 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | GAO United States Government Accountability Office, Report No. B317508 | Other | Report | 2009-01-05T05:00:00Z | 2009 | 1 | 2009-01-05T05:00:00Z | 2024-11-12T04:33:03Z | 1 | 0 | 090000648080f3cc |
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;