documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "FMCSA", document_type = "Rule" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-0252 | FMCSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FMCSA-2013-0161 | Revisions to Civil Penalty Amounts, 2024 | Rule | Final Rule | 2023-12-28T05:00:00Z | 2023 | 12 | 2023-12-28T05:00:00Z | 2023-12-28T14:48:58Z | 2023-28066 | 0 | 0 | 09000064863616e6 | |
| FMCSA-2023-0174-0001 | FMCSA | None FMCSA-2023-0174 | Federal Motor Carrier Safety Regulations (General Technical, Organizational, Conforming, and Correcting Amendments) | Rule | Final Rule | 2023-11-17T05:00:00Z | 2023 | 11 | 2023-11-17T05:00:00Z | 2023-12-07T02:04:19Z | 2023-24160 | 0 | 0 | 090000648628cc14 | |
| FMCSA-2016-0102-0436 | FMCSA | None FMCSA-2016-0102 | Broker and Freight Forwarder Financial Responsibility | Rule | Final Rule | 2023-11-16T05:00:00Z | 2023 | 11 | 2023-11-16T05:00:00Z | 2023-11-16T17:03:52Z | 2023-25312 | 0 | 0 | 0900006486287d1e | |
| FMCSA-2023-0122-0004 | FMCSA | None FMCSA-2023-0122 | Hazardous Materials Safety Permits: North American Standard Out-of-Service Criteria; Incorporation by Reference | Rule | Final Rule | 2023-11-08T05:00:00Z | 2023 | 11 | 2023-11-08T05:00:00Z | 2023-11-08T15:14:59Z | 2023-24448 | 0 | 0 | 0900006486226df7 | |
| FMCSA-2022-0028-0033 | FMCSA | None FMCSA-2022-0028 | Clarification to the Applicability of Emergency Exemptions | Rule | Final Rule | 2023-10-13T04:00:00Z | 2023 | 10 | 2023-10-13T04:00:00Z | 2023-10-13T13:04:36Z | 2023-22538 | 0 | 0 | 09000064860cddf7 | |
| FMCSA-2013-0147-0009 | FMCSA | Request for Driver Class Exemption; the Commonwealth of Virginia, Department of Motor Vehicles FMCSA-2013-0147 | Exemption Application: Qualification of Drivers; Skill Performance Evaluation Program; Virginia Department of Motor Vehicles | Rule | Interim Final Rule | 2023-07-06T04:00:00Z | 2023 | 7 | 2023-07-06T04:00:00Z | 2023-08-08T03:59:59Z | 2024-11-07T23:39:01Z | 2023-13731 | 1 | 0 | 0900006485c61e73 |
| FMCSA-2023-0008-0003 | FMCSA | None FMCSA-2023-0008 | Fees for the Unified Carrier Registration Plan and Agreement | Rule | Final Rule | 2023-06-22T04:00:00Z | 2023 | 6 | 2023-06-22T04:00:00Z | 2023-06-22T12:21:46Z | 2023-13204 | 0 | 0 | 0900006485bb091c | |
| FMCSA-2022-0134-0153 | FMCSA | None FMCSA-2022-0134 | Definitions of Broker and Bona Fide Agents | Rule | Final Rule | 2023-06-16T04:00:00Z | 2023 | 6 | 2023-06-16T04:00:00Z | 2023-06-16T14:19:36Z | 2023-13080 | 0 | 0 | 0900006485b388d5 | |
| FMCSA-2013-0161-0237 | FMCSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FMCSA-2013-0161 | Procedures for Transportation Workplace Drug and Alcohol Testing Programs: Addition of Oral Fluid Specimen Testing for Drugs | Rule | Final Rule | 2023-05-02T04:00:00Z | 2023 | 5 | 2023-05-02T04:00:00Z | 2023-05-02T12:48:51Z | 2023-08041 | 0 | 0 | 09000064859b7b04 | |
| FMCSA-2013-0161-0228 | FMCSA | Federal Registers for Applications, Notices, and Orders - Miscellaneous FMCSA-2013-0161 | Civil Penalty Amounts | Rule | Final Rule | 2023-01-06T05:00:00Z | 2023 | 1 | 2023-01-06T05:00:00Z | 2023-01-06T15:21:33Z | 2022-28580 | 0 | 0 | 090000648559b25a |
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;