documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FMCSA-2010-0167" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2329 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | Meetings: Electronic Logging Device Technical Specification | Notice | Meeting | 2019-08-27T04:00:00Z | 2019 | 8 | 2019-08-27T04:00:00Z | 2019-08-27T13:18:47Z | 2019-18417 | 0 | 0 | 0900006483ecbaa8 | |
| FMCSA-2010-0167-2255 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | Electronic Logging Devices and Hours of Service Supporting Documents: Research Report on Attitudes of Truck Drivers and Carriers on the Use of Electronic Logging Devices and Driver Harassment | Notice | Notice of Availability | 2014-11-13T05:00:00Z | 2014 | 11 | 2014-11-13T05:00:00Z | 2014-12-16T04:59:59Z | 2019-08-30T15:18:21Z | 2014-26851 | 0 | 0 | 090000648192b81b |
| FMCSA-2010-0167-0899 | FMCSA | Electronic On-Board Recorders Broader Including Hours of Service of Drivers; Supporting Documents FMCSA-2010-0167 | Evaluating the Potential Safety Benefits of Electronic Hours-of-Service Recorders: Electronic Logging Devices and Hours of Service Supporting Documents | Notice | Notice of Availability | 2014-05-12T04:00:00Z | 2014 | 5 | 2014-05-12T04:00:00Z | 2014-05-12T14:31:09Z | 2014-10813 | 0 | 0 | 09000064816f0835 | |
| 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;