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 = "Proposed Rule" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, subtype, posted_month, 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-2024-0121-0012 | FMCSA | None FMCSA-2024-0121 | Transportation of Fuel for Agricultural Aircraft Operations | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2024-12-04T05:00:00Z | 2024 | 12 | 2024-12-04T05:00:00Z | 2025-02-04T04:59:59Z | 2025-02-05T02:00:48Z | 2024-28097 | 0 | 0 | 0900006486848876 |
| FMCSA-2024-0280-0011 | FMCSA | None FMCSA-2024-0280 | Broker and Freight Forwarder Financial Responsibility | Proposed Rule | Reopening of Comment Period | 2024-11-21T05:00:00Z | 2024 | 11 | 2024-11-21T05:00:00Z | 2024-11-21T18:41:12Z | 2024-27134 | 0 | 0 | 090000648682c553 | |
| FMCSA-2023-0257-0001 | FMCSA | None FMCSA-2023-0257 | Transparency in Property Broker Transactions | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2024-11-20T05:00:00Z | 2024 | 11 | 2024-11-20T05:00:00Z | 2025-03-21T03:59:59Z | 2025-03-22T01:00:38Z | 2024-27115 | 0 | 0 | 0900006486829fe0 |
| FMCSA-2024-0280-0001 | FMCSA | None FMCSA-2024-0280 | Broker and Freight Forwarder Financial Responsibility | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2024-11-04T05:00:00Z | 2024 | 11 | 2024-11-04T05:00:00Z | 2024-11-20T04:59:59Z | 2024-12-02T15:02:23Z | 2024-25517 | 0 | 0 | 09000064867fa762 |
| FMCSA-2024-0073-0001 | FMCSA | None FMCSA-2024-0073 | Hazardous Materials Safety Permits: North American Standard Out-of-Service Criteria | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2024-05-03T04:00:00Z | 2024 | 5 | 2024-05-03T04:00:00Z | 2024-06-04T03:59:59Z | 2024-06-05T12:53:03Z | 2024-09357 | 0 | 0 | 0900006486531d48 |
| FMCSA-2023-0269-0001 | FMCSA | None FMCSA-2023-0269 | Commercial Driver's License Standards: New State Procedures Manual | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2024-02-20T05:00:00Z | 2024 | 2 | 2024-02-20T05:00:00Z | 2024-03-22T03:59:59Z | 2024-03-22T12:38:04Z | 2024-03191 | 0 | 0 | 0900006486418f59 |
| FMCSA-2023-0115-0001 | FMCSA | None FMCSA-2023-0115 | Commercial Driver's License Requirements: Increased Flexibility for Testing and for Drivers after Passing the Skills Test | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2024-02-02T05:00:00Z | 2024 | 2 | 2024-02-02T05:00:00Z | 2024-04-03T03:59:59Z | 2024-04-10T12:51:36Z | 2024-01710 | 0 | 0 | 09000064863d7acb |
| FMCSA-2022-0003-0183 | FMCSA | None FMCSA-2022-0003 | Safety Fitness Determinations | Proposed Rule | Request for Comment | 2024-01-12T05:00:00Z | 2024 | 1 | 2024-01-12T05:00:00Z | 2024-02-13T04:59:59Z | 2024-02-14T02:00:14Z | 2024-00522 | 0 | 0 | 0900006486394b5e |
| FMCSA-2023-0268-0001 | FMCSA | None FMCSA-2023-0268 | Fees for the Unified Carrier Registration Plan and Agreement | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2024-01-09T05:00:00Z | 2024 | 1 | 2024-01-09T05:00:00Z | 2024-02-09T04:59:59Z | 2024-02-28T02:00:23Z | 2024-00262 | 0 | 0 | 09000064863887b4 |
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;