documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2002-12294" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, last_modified, 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-2002-12294-0031 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2002-12294 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2008-12-22T05:00:00Z | 2008 | 12 | 2008-12-22T05:00:00Z | 2009-01-22T04:59:59Z | 2024-11-07T22:01:29Z | E8-30383 | 1 | 0 | 09000064807e6b14 |
| FMCSA-2002-12294-0030 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2002-12294 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2008-12-12T05:00:00Z | 2008 | 12 | 2008-12-12T05:00:00Z | 2009-01-13T04:59:59Z | 2008-12-20T18:28:08Z | E8-29416 | 0 | 0 | 09000064807d8c42 |
| FMCSA-2002-12294-0029 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2002-12294 | Qualification of Drivers; Exemption Renewals; Vision | Rule | Federal Register Publication | 2008-12-08T05:00:00Z | 2008 | 12 | 2008-12-08T05:00:00Z | 2008-12-20T18:28:08Z | E8-28948 | 0 | 0 | 09000064807d233f | |
| FMCSA-2002-12294-0026 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2002-12294 | Qualification of Drivers; Exemption Renewals; Vision | Rule | Federal Register Publication | 2008-10-17T04:00:00Z | 2008 | 10 | 2008-10-17T04:00:00Z | 2024-11-12T04:24:54Z | E8-24695 | 1 | 0 | 090000648076353e | |
| FMCSA-2002-12294-0027 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2002-12294 | Qualification of Drivers; Exemption Renewals; Vision | Rule | Federal Register Publication | 2008-10-17T04:00:00Z | 2008 | 10 | 2008-10-17T04:00:00Z | 2024-11-07T21:57:22Z | E8-24698 | 1 | 0 | 090000648076362f | |
| FMCSA-2002-12294-0025 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2002-12294 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2008-10-10T04:00:00Z | 2008 | 10 | 2008-10-10T04:00:00Z | 2008-11-11T04:59:59Z | 2024-11-07T21:57:02Z | E8-24104 | 1 | 0 | 0900006480744047 |
| FMCSA-2002-12294-0022 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2002-12294 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2008-09-02T04:00:00Z | 2008 | 9 | 2008-09-02T04:00:00Z | 2008-10-03T03:59:59Z | 2024-11-12T04:22:59Z | E8-20223 | 1 | 0 | 09000064806ec95a |
| FMCSA-2002-12294-0021 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2002-12294 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2008-08-18T04:00:00Z | 2008 | 8 | 2008-08-18T04:00:00Z | 2008-09-18T03:59:59Z | 2024-11-07T21:55:33Z | E8-19076 | 1 | 0 | 09000064806cab03 |
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;