documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2007-29019" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: comment_end_date, comment_start_date (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-2007-29019-0009 | FMCSA | Qualification of Drivers: Exemption Applications: Vision FMCSA-2007-29019 | Qualification of Drivers; Exemption Renewals; Vision | Rule | Federal Register Publication | 2010-03-02T05:00:00Z | 2010 | 3 | 2010-03-02T05:00:00Z | 2024-11-12T04:47:26Z | 2010-04250 | 1 | 0 | 0900006480ab22af | |
| FMCSA-2007-29019-0008 | FMCSA | Qualification of Drivers: Exemption Applications: Vision FMCSA-2007-29019 | Qualification of Drivers; Exemption Renewals; Vision | Rule | Federal Register Publication | 2010-02-23T05:00:00Z | 2010 | 2 | 2010-02-23T05:00:00Z | 2024-11-12T04:48:29Z | 2010-03582 | 1 | 0 | 0900006480aabc24 | |
| FMCSA-2007-29019-0006 | FMCSA | Qualification of Drivers: Exemption Applications: Vision FMCSA-2007-29019 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2010-01-11T05:00:00Z | 2010 | 1 | 2010-01-11T05:00:00Z | 2010-02-11T04:59:59Z | 2024-11-07T22:12:43Z | 2010-00203 | 1 | 0 | 0900006480a7b618 |
| FMCSA-2007-29019-0007 | FMCSA | Qualification of Drivers: Exemption Applications: Vision FMCSA-2007-29019 | Qualification of Drivers; Exemption Renewals; Vision | Rule | Federal Register Publication | 2010-01-11T05:00:00Z | 2010 | 1 | 2010-01-11T05:00:00Z | 2010-01-12T04:59:59Z | 2024-11-12T04:48:44Z | 2010-00201 | 1 | 0 | 0900006480a7b658 |
| FMCSA-2007-29019-0005 | FMCSA | Qualification of Drivers: Exemption Applications: Vision FMCSA-2007-29019 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2009-12-11T05:00:00Z | 2009 | 12 | 2009-12-11T05:00:00Z | 2010-01-12T04:59:59Z | 2024-11-12T04:48:55Z | E9-29534 | 1 | 0 | 0900006480a68ff0 |
| FMCSA-2007-29019-0004 | FMCSA | Qualification of Drivers: Exemption Applications: Vision FMCSA-2007-29019 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2009-11-06T05:00:00Z | 2009 | 11 | 2009-11-06T05:00:00Z | 2009-12-08T04:59:59Z | 2024-11-07T22:09:26Z | E9-26780 | 1 | 0 | 0900006480a52f00 |
| FMCSA-2007-29019-0003 | FMCSA | Qualification of Drivers: Exemption Applications: Vision FMCSA-2007-29019 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2007-11-28T05:00:00Z | 2007 | 11 | 2007-11-28T05:00:00Z | 2024-11-07T23:55:23Z | E7-23107 | 1 | 0 | 09000064803693e0 | |
| FMCSA-2007-29019-0001 | FMCSA | Qualification of Drivers: Exemption Applications: Vision FMCSA-2007-29019 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2007-10-15T04:00:00Z | 2007 | 10 | 2007-10-15T04:00:00Z | 2007-11-15T04:59:59Z | 2024-11-12T02:17:45Z | E7-20208 | 1 | 0 | 09000064803000f8 |
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;