documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FMCSA-2016-0007" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-2016-0007-0019 | FMCSA | None FMCSA-2016-0007 | Exemption Application: Exemption Applications; Epilepsy and Seizure Disorders | Notice | Notice of Renewal | 2023-07-12T04:00:00Z | 2023 | 7 | 2023-07-12T04:00:00Z | 2024-11-07T01:35:35Z | 2023-14722 | 1 | 0 | 0900006485c8b92b | |
| FMCSA-2016-0007-0018 | FMCSA | None FMCSA-2016-0007 | Exemption Application: Qualification of Drivers; Epilepsy and Seizure Disorders | Notice | Notice of Renewal | 2023-05-31T04:00:00Z | 2023 | 5 | 2023-05-31T04:00:00Z | 2023-07-01T03:59:59Z | 2024-11-06T23:36:36Z | 2023-11438 | 1 | 0 | 0900006485a94dfb |
| FMCSA-2016-0007-0017 | FMCSA | None FMCSA-2016-0007 | Qualification of Drivers; Exemption Applications: Epilepsy and Seizure Disorders | Notice | Notice of Final Rule | 2023-04-13T04:00:00Z | 2023 | 4 | 2023-04-13T04:00:00Z | 2024-11-12T23:53:27Z | 2023-07781 | 1 | 0 | 0900006485941c86 | |
| FMCSA-2016-0007-0014 | FMCSA | None FMCSA-2016-0007 | Application: Qualification of Drivers; Epilepsy and Seizure Disorders | Notice | Notice of Renewal | 2023-03-03T05:00:00Z | 2023 | 3 | 2023-03-03T05:00:00Z | 2023-04-04T03:59:59Z | 2024-11-12T23:51:38Z | 2023-04386 | 1 | 0 | 090000648574c1c5 |
| FMCSA-2016-0007-0013 | FMCSA | None FMCSA-2016-0007 | Exemption Application: Qualification of Drivers; Epilepsy and Seizure Disorders | Notice | Notice of Renewal | 2023-03-01T05:00:00Z | 2023 | 3 | 2023-03-01T05:00:00Z | 2024-11-07T00:48:07Z | 2023-04128 | 1 | 0 | 090000648572aecb | |
| FMCSA-2016-0007-0011 | FMCSA | None FMCSA-2016-0007 | Exemption Application: Qualification of Drivers; Epilepsy and Seizure Disorders | Notice | Notice of Renewal | 2023-01-12T05:00:00Z | 2023 | 1 | 2023-01-12T05:00:00Z | 2023-02-14T04:59:59Z | 2024-11-12T23:48:35Z | 2023-00442 | 1 | 0 | 09000064855dcf70 |
| FMCSA-2016-0007-0012 | FMCSA | None FMCSA-2016-0007 | Exemption Application: Qualification of Drivers; Epilepsy and Seizure Disorders | Notice | Notice of Renewal | 2023-01-12T05:00:00Z | 2023 | 1 | 2023-01-12T05:00:00Z | 2023-01-12T14:22:24Z | 2023-00446 | 0 | 0 | 09000064855e8c03 |
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;