documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2016-0003" and posted_year = 2020 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-2016-0003-0014 | FMCSA | None FMCSA-2016-0003 | Qualification of Drivers; Exemption Applications: Hearing | Notice | Notice of Approval | 2020-06-30T04:00:00Z | 2020 | 6 | 2020-06-30T04:00:00Z | 2024-11-12T23:21:50Z | 2020-14049 | 1 | 0 | 090000648471c77a | |
| FMCSA-2016-0003-0013 | FMCSA | None FMCSA-2016-0003 | Qualification of Drivers; Exemption Applications: Hearing | Notice | Notice of Action Taken | 2020-05-19T04:00:00Z | 2020 | 5 | 2020-05-19T04:00:00Z | 2024-11-06T23:37:01Z | 2020-10691 | 1 | 0 | 0900006484640c90 | |
| FMCSA-2016-0003-0012 | FMCSA | None FMCSA-2016-0003 | Qualification of Drivers; Exemption Applications: Hearing | Notice | Request for Comments | 2020-05-05T04:00:00Z | 2020 | 5 | 2020-05-05T04:00:00Z | 2020-06-05T03:59:59Z | 2024-11-12T23:19:19Z | 2020-09551 | 1 | 0 | 090000648455f361 |
| FMCSA-2016-0003-0011 | FMCSA | None FMCSA-2016-0003 | Qualification of Drivers; Exemption Applications: Hearing | Notice | Request for Comments | 2020-04-07T04:00:00Z | 2020 | 4 | 2020-04-07T04:00:00Z | 2020-05-08T03:59:59Z | 2024-11-06T23:34:36Z | 2020-07286 | 1 | 0 | 090000648448f8bd |
| FMCSA-2016-0003-0010 | FMCSA | None FMCSA-2016-0003 | Qualification of Drivers; Exemption Applications: Hearing | Notice | Notice of Intent | 2020-04-06T04:00:00Z | 2020 | 4 | 2020-04-06T04:00:00Z | 2024-11-06T23:34:04Z | 2020-07118 | 1 | 0 | 090000648448b574 | |
| FMCSA-2016-0003-0009 | FMCSA | None FMCSA-2016-0003 | Qualification of Drivers; Exemption Applications: Hearing; Final Disposition | Notice | Hearings | 2020-03-05T05:00:00Z | 2020 | 3 | 2020-03-05T05:00:00Z | 2024-11-06T23:32:46Z | 2020-04532 | 1 | 0 | 09000064843edb8e | |
| FMCSA-2016-0003-0008 | FMCSA | None FMCSA-2016-0003 | Qualification of Drivers; Exemption Applications: Hearing | Notice | Request for Comments | 2020-02-07T05:00:00Z | 2020 | 2 | 2020-02-07T05:00:00Z | 2020-03-10T03:59:59Z | 2024-11-06T23:31:49Z | 2020-02340 | 1 | 0 | 090000648433c4f0 |
| FMCSA-2016-0003-0007 | FMCSA | None FMCSA-2016-0003 | Qualification of Drivers; Exemption Applications: Hearing | Notice | Request for Comments | 2020-01-15T05:00:00Z | 2020 | 1 | 2020-01-15T05:00:00Z | 2020-02-15T04:59:59Z | 2024-11-12T23:16:03Z | 2020-00554 | 1 | 0 | 09000064842a8de9 |
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;