documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FMCSA", document_type = "Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_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-2013-0161-0079 | FMCSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FMCSA-2013-0161 | Hours of Service of Drivers of Commercial Motor Vehicles: Electronic Logging Devices; Limited 90-Day Waiver for the Transportation of Agricultural Commodities | Rule | Interim Final Rule | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-20T05:00:00Z | 2018-02-18T01:53:22Z | 2017-27311 | 0 | 0 | 0900006482d3f3c6 | |
| FMCSA-2013-0161-0073 | FMCSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FMCSA-2013-0161 | Commercial Driver's License Standards: Regulatory Guidance Concerning the Issuance of Commercial Learner's Permits | Rule | Final Rule | 2017-08-03T04:00:00Z | 2017 | 8 | 2017-08-03T04:00:00Z | 2019-10-28T14:33:32Z | 2017-16338 | 0 | 0 | 090000648299994f | |
| FMCSA-2012-0103-0093 | FMCSA | Lease, Rental, and Interchange of Vehicles in Interstate Commerce; For-Hire Motor Carriers of Passengers FMCSA-2012-0103 | Lease and Interchange of Vehicles: Motor Carriers of Passengers | Rule | Final Rule | 2017-06-16T04:00:00Z | 2017 | 6 | 2017-06-16T04:00:00Z | 2024-11-07T01:01:17Z | 2017-12086 | 1 | 0 | 09000064826e4753 | |
| FMCSA-2007-27748-1412 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators | Rule | Final Rule | 2017-05-23T04:00:00Z | 2017 | 5 | 2017-05-23T04:00:00Z | 2019-09-05T13:08:02Z | 2017-10556 | 0 | 0 | 090000648260047e | |
| FMCSA-2016-0128-0002 | FMCSA | None FMCSA-2016-0128 | Federal Civil Penalties Inflation Adjustment of 2015 | Rule | Final Rule | 2017-04-12T04:00:00Z | 2017 | 4 | 2017-04-12T04:00:00Z | 2017-04-12T13:28:11Z | 2017-07316 | 0 | 0 | 090000648254d988 | |
| FMCSA-2007-27748-1410 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators | Rule | Final Rule with Request for Comments | 2017-03-21T04:00:00Z | 2017 | 3 | 2017-03-21T04:00:00Z | 2017-03-21T15:30:51Z | 2017-05525 | 0 | 0 | 0900006482515968 | |
| FMCSA-2007-27748-1403 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Commercial Driver's License Requirements: Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators | Rule | Final Rule | 2017-02-01T05:00:00Z | 2017 | 2 | 2017-02-01T05:00:00Z | 2019-09-05T17:54:59Z | 2017-02150 | 0 | 0 | 09000064824a3c27 | |
| FMCSA-1997-2349-0206 | FMCSA | Unified Registration System FMCSA-1997-2349 | Unified Registration System; Suspension of Effectiveness | Rule | Final Rule | 2017-01-17T05:00:00Z | 2017 | 1 | 2017-01-17T05:00:00Z | 2017-02-17T04:59:59Z | 2017-01-17T20:03:19Z | 2016-31706 | 0 | 0 | 090000648247d27e |
| FMCSA-2007-27748-1398 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Commercial Driver's License Requirements: Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators; Correction | Rule | Final Rule | 2017-01-10T05:00:00Z | 2017 | 1 | 2017-01-10T05:00:00Z | 2017-01-10T16:46:45Z | 2016-31784 | 0 | 0 | 0900006482456c34 |
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;