documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FMCSA-2010-0096" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2010-0096-0339 | FMCSA | Drivers of CMVs: Restricting the Use of Cellular Phones FMCSA-2010-0096 | U.S. DOT/FMCSA - Final Rule - Environmental Assessment | Other | Environmental assessment | 2011-12-06T05:00:00Z | 2011 | 12 | 2011-12-06T05:00:00Z | 2019-08-15T01:01:35Z | 0 | 0 | 0900006480f7ca8d | ||
| FMCSA-2010-0096-0340 | FMCSA | Drivers of CMVs: Restricting the Use of Cellular Phones FMCSA-2010-0096 | U.S. DOT/FMCSA - Final Rule - Drivers of Commercial Motor Vehicles: Restricting the Use of Cellular Phones Final Regulatory Evaluation | Other | Regulatory Analysis | 2011-12-06T05:00:00Z | 2011 | 12 | 2011-12-06T05:00:00Z | 2011-12-06T20:44:07Z | 0 | 0 | 0900006480f7c72d | ||
| FMCSA-2010-0096-0337 | FMCSA | Drivers of CMVs: Restricting the Use of Cellular Phones FMCSA-2010-0096 | Commercial Motor Vehicle Drivers: Restricting the Use of Cellular Phones | Rule | Final Rule | 2011-12-02T05:00:00Z | 2011 | 12 | 2011-12-02T05:00:00Z | 2015-02-23T03:00:50Z | 2011-30749 | 0 | 0 | 0900006480f7a2aa | |
| FMCSA-2010-0096-0287 | FMCSA | Drivers of CMVs: Restricting the Use of Cellular Phones FMCSA-2010-0096 | Michael Gully - Comments | Other | Other | 2011-02-25T05:00:00Z | 2011 | 2 | 2011-02-25T05:00:00Z | 2024-11-12T05:00:54Z | 1 | 0 | 0900006480bf720b | ||
| FMCSA-2010-0096-0152 | FMCSA | Drivers of CMVs: Restricting the Use of Cellular Phones FMCSA-2010-0096 | Executive Order 12866 and Congressional Review Requirements | Other | Other | 2011-01-31T05:00:00Z | 2011 | 1 | 2011-01-31T05:00:00Z | 2013-07-27T23:43:43Z | 0 | 0 | 0900006480bd3c2e |
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;