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 = 2012 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, 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-28458 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | In the Matter of Federal Motor Carrier Safety Administration - Response to Petition | Other | Agency Response | 2012-03-12T04:00:00Z | 2012 | 3 | 2012-03-12T04:00:00Z | 2024-11-07T22:38:11Z | 1 | 0 | 0900006480fd3b2a | ||
| FMCSA-2004-19608-28457 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | In the Matter of XATA Corporation - Response to Denial of Petition | Other | Response(s) | 2012-03-12T04:00:00Z | 2012 | 3 | 2011-12-27T05:00:00Z | 2013-02-22T03:03:26Z | 0 | 0 | 0900006480fd30d9 | ||
| FMCSA-2004-19608-28455 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Denial of XATA Corporation Petition for Reconsideration of 2011 Hours of Service of Drivers Final Rule | Other | Denial of Petition | 2012-03-05T05:00:00Z | 2012 | 3 | 2012-03-05T05:00:00Z | 2012-03-05T15:10:05Z | 0 | 0 | 0900006480fcee40 | ||
| FMCSA-2004-19608-28453 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Limited 90-Day Waiver (Expires May 28, 2012) of Automatic On-Board Recording Device Requirements | Other | Waiver | 2012-03-05T05:00:00Z | 2012 | 3 | 2012-03-05T05:00:00Z | 2012-03-05T18:18:19Z | 0 | 0 | 0900006480fcee39 | ||
| FMCSA-2004-19608-28456 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Denial of PeopleNet Petition for Reconsideration of 2011 Hours of Service of Drivers Final Rule | Other | Denial of Petition | 2012-03-05T05:00:00Z | 2012 | 3 | 2012-03-05T05:00:00Z | 2024-11-07T22:06:42Z | 1 | 0 | 0900006480fcee42 | ||
| FMCSA-2004-19608-28454 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Denial of Commercial Vehicle Safety Alliance Petition for Reconsideration of 2011 Hours of Service of Drivers Final Rule | Other | Denial of Petition | 2012-03-05T05:00:00Z | 2012 | 3 | 2012-03-05T05:00:00Z | 2013-07-04T01:02:36Z | 0 | 0 | 0900006480fcee3b | ||
| FMCSA-2004-19608-28452 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Limited 90-Day Waiver (Expires May 28, 2012) of Automatic On-Board Recording Device Requirements | Other | Waiver | 2012-03-05T05:00:00Z | 2012 | 3 | 2012-03-05T05:00:00Z | 2012-03-05T18:17:33Z | 0 | 0 | 0900006480fcee37 | ||
| FMCSA-2004-19608-28448 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Hours of Service of Drivers; Correction | Rule | Final Rule | 2012-02-13T05:00:00Z | 2012 | 2 | 2012-02-13T05:00:00Z | 2024-11-07T22:03:27Z | 2012-03305 | 1 | 0 | 0900006480fb4582 | |
| FMCSA-2004-19608-28435 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | Hours of Service of Drivers - 2011 Final Rule: EO 12866 and CRA Requirements | Other | OMB Review | 2012-01-23T05:00:00Z | 2012 | 1 | 2012-01-23T05:00:00Z | 2024-11-07T22:25:20Z | 1 | 0 | 0900006480fa104f | ||
| FMCSA-2004-19608-28425 | FMCSA | Hours of Service of Drivers FMCSA-2004-19608 | William B. Trescott - Petition To Reconsider | Other | Petition for Reconsideration | 2012-01-18T05:00:00Z | 2012 | 1 | 2012-01-18T05:00:00Z | 2013-07-28T00:12:52Z | 0 | 0 | 0900006480f98c1e |
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;