documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FMCSA-2014-0385" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, comment_end_date, 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-2014-0385-0023 | FMCSA | None FMCSA-2014-0385 | Exemption Application: Qualification of Drivers; Hearing | Notice | Notice of Renewal | 2023-12-20T05:00:00Z | 2023 | 12 | 2023-12-20T05:00:00Z | 2024-11-12T06:21:09Z | 2023-27994 | 1 | 0 | 090000648634bd8a | |
| FMCSA-2014-0385-0022 | FMCSA | None FMCSA-2014-0385 | Exemption Applications: Qualification of Drivers; Hearing | Notice | Notice of Renewal | 2023-10-31T04:00:00Z | 2023 | 10 | 2023-10-31T04:00:00Z | 2023-12-01T04:59:59Z | 2024-11-12T06:20:15Z | 2023-23967 | 1 | 0 | 09000064861a1faf |
| FMCSA-2014-0385-0021 | FMCSA | None FMCSA-2014-0385 | Exemption Application: Qualification of Drivers; Hearing | Notice | Notice of Renewal | 2023-10-27T04:00:00Z | 2023 | 10 | 2023-10-27T04:00:00Z | 2024-11-12T06:19:23Z | 2023-23742 | 1 | 0 | 090000648614b96a | |
| FMCSA-2014-0385-0020 | FMCSA | None FMCSA-2014-0385 | Exemption Application: Qualification of Drivers; Hearing | Notice | Notice of Renewal | 2023-09-19T04:00:00Z | 2023 | 9 | 2023-09-19T04:00:00Z | 2023-10-06T03:59:59Z | 2024-11-07T00:52:42Z | 2023-20152 | 1 | 0 | 0900006485fd0327 |
| FMCSA-2014-0385-0019 | FMCSA | None FMCSA-2014-0385 | Exemption Application: Qualification of Drivers; Hearing | Notice | Notice of Renewal | 2023-09-13T04:00:00Z | 2023 | 9 | 2023-09-13T04:00:00Z | 2024-11-07T00:51:44Z | 2023-19753 | 1 | 0 | 0900006485f99e3e | |
| FMCSA-2014-0385-0018 | FMCSA | None FMCSA-2014-0385 | Exemption Application: Qualification of Drivers; Hearing | Notice | Notice of Renewal | 2023-09-06T04:00:00Z | 2023 | 9 | 2023-09-06T04:00:00Z | 2023-10-06T03:59:59Z | 2024-11-12T23:54:01Z | 2023-18993 | 1 | 0 | 0900006485f496ac |
| FMCSA-2014-0385-0017 | FMCSA | None FMCSA-2014-0385 | Exemption Application: Qualification of Drivers; Hearing | Notice | Notice of Renewal | 2023-08-03T04:00:00Z | 2023 | 8 | 2023-08-03T04:00:00Z | 2023-09-06T03:59:59Z | 2024-11-07T00:32:45Z | 2023-16597 | 1 | 0 | 0900006485db61e9 |
| FMCSA-2014-0385-0016 | FMCSA | None FMCSA-2014-0385 | Exemption Application: Qualification of Drivers; Hearing | Notice | Notice of Renewal | 2023-05-15T04:00:00Z | 2023 | 5 | 2023-05-15T04:00:00Z | 2024-11-07T01:34:38Z | 2023-10270 | 1 | 0 | 0900006485a0aa05 | |
| FMCSA-2014-0385-0015 | FMCSA | None FMCSA-2014-0385 | Exemption Application: Qualification of Drivers; Hearing | Notice | Notice of Renewal | 2023-04-03T04:00:00Z | 2023 | 4 | 2023-04-03T04:00:00Z | 2024-11-07T00:49:22Z | 2023-06595 | 1 | 0 | 09000064858c617e |
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;