documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FMCSA", document_type = "Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2016-0341-0014 | FMCSA | None FMCSA-2016-0341 | Rulemaking Procedures Update | Rule | Final Rule | 2020-12-31T05:00:00Z | 2020 | 12 | 2020-12-31T05:00:00Z | 2024-11-12T23:26:33Z | 2020-27854 | 1 | 0 | 09000064849d654c | |
| FMCSA-2018-0348-0147 | FMCSA | None FMCSA-2018-0348 | Hours of Service of Drivers: Definition of Agricultural Commodity | Rule | Interim Final Rule | 2020-11-24T05:00:00Z | 2020 | 11 | 2020-11-24T05:00:00Z | 2020-12-25T04:59:59Z | 2024-11-06T23:43:12Z | 2020-25971 | 1 | 0 | 0900006484973332 |
| FMCSA-2019-0075-0014 | FMCSA | None FMCSA-2019-0075 | Passenger Carrier No-Defect Driver Vehicle Inspection Reports | Rule | Final Rule | 2020-08-18T04:00:00Z | 2020 | 8 | 2020-08-18T04:00:00Z | 2025-08-05T16:53:45Z | 2020-15667 | 0 | 0 | 090000648480cdfa | |
| FMCSA-2017-0370-0008 | FMCSA | None FMCSA-2017-0370 | Motor Carrier Safety Assistance Program | Rule | Final Rule | 2020-06-24T04:00:00Z | 2020 | 6 | 2020-06-24T04:00:00Z | 2024-11-12T23:22:30Z | 2020-11464 | 1 | 0 | 0900006484704372 | |
| FMCSA-2018-0248-8249 | FMCSA | None FMCSA-2018-0248 | Hours of Service of Drivers | Rule | Final Rule | 2020-06-01T04:00:00Z | 2020 | 6 | 2020-06-01T04:00:00Z | 2020-07-02T03:59:59Z | 2025-07-07T21:25:30Z | 2020-11469 | 0 | 0 | 09000064846bf683 |
| FMCSA-2019-0068-0005 | FMCSA | None FMCSA-2019-0068 | Incorporation by Reference; North American Standard Out-of-Service Criteria; Hazardous Materials Safety Permits | Rule | Final Rule | 2020-02-24T05:00:00Z | 2020 | 2 | 2020-02-24T05:00:00Z | 2020-02-24T15:17:53Z | 2020-03129 | 0 | 0 | 09000064843a3233 | |
| FMCSA-2019-0066-0010 | FMCSA | None FMCSA-2019-0066 | Fees for the Unified Carrier Registration Plan and Agreement | Rule | Final Rule | 2020-02-13T05:00:00Z | 2020 | 2 | 2020-02-13T05:00:00Z | 2024-11-06T23:31:42Z | 2020-01761 | 1 | 0 | 0900006484362dd9 | |
| FMCSA-2007-27748-1474 | FMCSA | Minimum Training Requirements for Entry-Level Commercial Motor Vehicle Operators FMCSA-2007-27748 | Extension of Compliance Date for Entry-Level Driver Training | Rule | Final Rule with Request for Comments | 2020-02-04T05:00:00Z | 2020 | 2 | 2020-02-04T05:00:00Z | 2020-03-21T03:59:59Z | 2024-11-12T23:16:53Z | 2020-01548 | 1 | 0 | 09000064843250d0 |
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;