documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FMCSA-2010-0167" 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, 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-2010-0167-0466 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | Ex Parte Summary of Meeting Under E.O. 12866 - FMCSA Meeting with Continental Corporation and the Potomac Alliance, November 28, 2012 | Other | Record of Meeting/Phone Conversation | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T05:00:00Z | 2019-08-30T15:22:11Z | 0 | 0 | 0900006481188a09 | ||
| FMCSA-2010-0167-0462 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | U.S. DOT/FMCSA - Notice of Communication | Other | Memorandum | 2012-08-03T04:00:00Z | 2012 | 8 | 2012-08-03T04:00:00Z | 2012-08-03T19:46:06Z | 0 | 0 | 09000064810c17f4 | ||
| FMCSA-2010-0167-0449 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | Transcript of Public Listening Session Held on 04/26/12 in Bellevue, Washington. | Other | Transcript(s) | 2012-06-11T04:00:00Z | 2012 | 6 | 2012-06-11T04:00:00Z | 2019-08-30T15:21:28Z | 0 | 0 | 0900006481041786 | ||
| FMCSA-2010-0167-0450 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | Transcript of Public Listening Session Held on March 23, 2012 in Louisville, Kentucky. | Other | Transcript(s) | 2012-06-11T04:00:00Z | 2012 | 6 | 2012-06-11T04:00:00Z | 2019-08-30T15:21:52Z | 0 | 0 | 09000064810417aa | ||
| FMCSA-2010-0167-0435 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | Mike Fullen - Comments | Other | Acknowledgement Letter/Receipt | 2012-04-27T04:00:00Z | 2012 | 4 | 2012-04-27T04:00:00Z | 2019-08-30T15:21:15Z | 0 | 0 | 0900006480ffdf7a | ||
| FMCSA-2010-0167-0433 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | U.S. DOT/FMCSA - Notice of Communications | Other | Memorandum | 2012-04-23T04:00:00Z | 2012 | 4 | 2012-04-23T04:00:00Z | 2012-04-23T14:43:09Z | 0 | 0 | 0900006480ff554d | ||
| FMCSA-2010-0167-0430 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | Electronic On-Board Recorders and Hours of Service Supporting Documents | Notice | Notice of Change | 2012-04-02T04:00:00Z | 2012 | 4 | 2012-04-02T04:00:00Z | 2019-08-30T15:18:01Z | 2012-07899 | 0 | 0 | 0900006480fe6540 | |
| FMCSA-2010-0167-0425 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | Electronic On-Board Recorders and Hours of Service Supporting Documents: Public Listening Session | Notice | Notice of Change | 2012-02-29T05:00:00Z | 2012 | 2 | 2012-02-29T05:00:00Z | 2019-08-30T15:17:50Z | 2012-04876 | 0 | 0 | 0900006480fc8dd2 | |
| FMCSA-2010-0167-0424 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | Electronic On-Board Recorders and Hours of Service Supporting Documents | Notice | Notice of Intent | 2012-02-13T05:00:00Z | 2012 | 2 | 2012-02-13T05:00:00Z | 2019-08-30T15:17:38Z | 2012-03265 | 0 | 0 | 0900006480fb457d |
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;