documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "FMCSA-2024-0307" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- FMCSA 4
| 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-0307-0005 | FMCSA | None FMCSA-2024-0307 | Exemption Application: Commercial Driver's License: Bianco Trucking Services, LLC, d.b.a. CDL and Operator Training | Notice | Notice of Denial | 2025-07-28T04:00:00Z | 2025 | 7 | 2025-07-28T04:00:00Z | 2025-07-28T17:56:00Z | 2025-14126 | 0 | 0 | 09000064b8ead91c | |
| FMCSA-2024-0307-0004 | FMCSA | None FMCSA-2024-0307 | Bianco Trucking Services, LLC - Additional Information | Supporting & Related Material | Supplement | 2025-02-04T05:00:00Z | 2025 | 2 | 2025-02-04T16:29:41Z | 0 | 0 | 090000648692ef1a | |||
| FMCSA-2024-0307-0002 | FMCSA | None FMCSA-2024-0307 | Exemption Application: Commercial Driver's License; Bianco Trucking Services, LLC, d.b.a. CDL and Operator Training | Notice | Request for Comments | 2025-01-15T05:00:00Z | 2025 | 1 | 2025-01-15T05:00:00Z | 2025-02-15T04:59:59Z | 2025-02-18T13:22:24Z | 2025-00818 | 0 | 0 | 09000064868bfcff |
| FMCSA-2024-0307-0001 | FMCSA | None FMCSA-2024-0307 | Bianco Trucking Services LLC Application for Exemption | Supporting & Related Material | Supplement | 2024-12-13T05:00:00Z | 2024 | 12 | 2024-12-13T15:16:35Z | 0 | 0 | 090000648686e50a |
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;