documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2017-0178" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2017-0178-0009 | FMCSA | None FMCSA-2017-0178 | Exemption Application: Qualification of Drivers; Epilepsy and Seizure Disorders | Notice | Notice of Renewal | 2024-02-07T05:00:00Z | 2024 | 2 | 2024-02-07T05:00:00Z | 2024-11-12T22:23:02Z | 2024-02473 | 1 | 0 | 09000064863ef1af | |
| FMCSA-2017-0178-0008 | FMCSA | None FMCSA-2017-0178 | Qualification of Drivers; Exemption Applications; Epilepsy and Seizure Disorders | Notice | Request for Comments | 2023-12-21T05:00:00Z | 2023 | 12 | 2023-12-21T05:00:00Z | 2024-01-23T04:59:59Z | 2024-11-12T06:25:18Z | 2023-28038 | 1 | 0 | 090000648634e3d0 |
| FMCSA-2017-0178-0007 | FMCSA | None FMCSA-2017-0178 | Qualification of Drivers; Exemption Applications: Epilepsy and Seizure Disorders | Notice | Notice of Intent | 2022-02-09T05:00:00Z | 2022 | 2 | 2022-02-09T05:00:00Z | 2024-11-12T23:37:15Z | 2022-02629 | 1 | 0 | 0900006484f5e375 | |
| FMCSA-2017-0178-0006 | FMCSA | None FMCSA-2017-0178 | Exemption Application: Qualification of Drivers; Epilepsy and Seizure Disorders | Notice | Request for Comments | 2022-01-11T05:00:00Z | 2022 | 1 | 2022-01-11T05:00:00Z | 2022-01-29T04:59:59Z | 2024-11-12T23:36:06Z | 2021-28307 | 1 | 0 | 0900006484f0058e |
| FMCSA-2017-0178-0005 | FMCSA | None FMCSA-2017-0178 | Qualification of Drivers; Exemption Applications: Epilepsy and Seizure Disorders | Notice | Notice of Intent | 2019-10-31T04:00:00Z | 2019 | 10 | 2019-10-31T04:00:00Z | 2024-11-12T23:11:20Z | 2019-23756 | 1 | 0 | 0900006484110734 | |
| FMCSA-2017-0178-0003 | FMCSA | None FMCSA-2017-0178 | Qualification of Drivers; Exemption Applications: Epilepsy and Seizure Disorders | Notice | Request for Comments | 2019-09-06T04:00:00Z | 2019 | 9 | 2019-09-06T04:00:00Z | 2019-10-08T03:59:59Z | 2024-11-12T23:07:48Z | 2019-19264 | 1 | 0 | 0900006483f07459 |
| FMCSA-2017-0178-0002 | FMCSA | None FMCSA-2017-0178 | Qualification of Drivers; Exemption Applications: Epilepsy and Seizure Disorders | Notice | Notice of Intent | 2017-09-18T04:00:00Z | 2017 | 9 | 2017-09-18T04:00:00Z | 2024-11-07T01:11:46Z | 2017-19757 | 1 | 0 | 0900006482b47482 | |
| FMCSA-2017-0178-0001 | FMCSA | None FMCSA-2017-0178 | Qualification of Drivers; Exemption Applications: Epilepsy and Seizure Disorders | Notice | Request for Comments | 2017-06-29T04:00:00Z | 2017 | 6 | 2017-06-29T04:00:00Z | 2017-08-01T03:59:59Z | 2024-11-07T01:02:45Z | 2017-13618 | 1 | 0 | 09000064827b7760 |
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;