documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FMCSA-2008-0340" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2008-0340-0006 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2008-0340 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2011-04-18T04:00:00Z | 2011 | 4 | 2011-04-18T04:00:00Z | 2011-05-19T03:59:59Z | 2011-04-18T15:05:37Z | 2011-09321 | 0 | 0 | 0900006480c2ec1e |
| FMCSA-2008-0340-0005 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2008-0340 | Qualifications of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2011-02-15T05:00:00Z | 2011 | 2 | 2011-02-15T05:00:00Z | 2011-03-18T03:59:59Z | 2011-02-15T16:55:35Z | 2011-03268 | 0 | 0 | 0900006480bef37a |
| FMCSA-2008-0340-0004 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2008-0340 | Qualifications of Drivers; Exemption Applications: Vision | Rule | Federal Register Publication | 2011-01-25T05:00:00Z | 2011 | 1 | 2011-01-25T05:00:00Z | 2011-02-25T04:59:59Z | 2011-01-25T16:42:35Z | 2011-01483 | 0 | 0 | 0900006480bd1b2c |
| FMCSA-2008-0340-0003 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2008-0340 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2009-02-05T05:00:00Z | 2009 | 2 | 2009-02-05T05:00:00Z | 2024-11-12T04:32:08Z | E9-02438 | 1 | 0 | 0900006480847a24 | |
| FMCSA-2008-0340-0001 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2008-0340 | 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 | 2024-11-07T22:00:48Z | E8-29415 | 1 | 0 | 09000064807d87e5 |
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;