documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FMCSA-2007-27897" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_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-2007-27897-0024 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2007-27897 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2010-10-28T04:00:00Z | 2010 | 10 | 2010-10-28T04:00:00Z | 2010-11-30T04:59:59Z | 2024-11-12T04:56:37Z | 2010-27293 | 1 | 0 | 0900006480b79964 |
| FMCSA-2007-27897-0023 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2007-27897 | Qualification of Drivers; Exemption Renewals; Vision | Rule | Federal Register Publication | 2010-04-15T04:00:00Z | 2010 | 4 | 2010-04-15T04:00:00Z | 2024-11-07T22:14:18Z | 2010-08648 | 1 | 0 | 0900006480ad82f1 | |
| FMCSA-2007-27897-0022 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2007-27897 | 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:48:30Z | 2010-04251 | 1 | 0 | 0900006480ab2310 | |
| FMCSA-2007-27897-0021 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2007-27897 | 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:47:29Z | 2010-03566 | 1 | 0 | 0900006480aace90 | |
| FMCSA-2007-27897-0020 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2007-27897 | Qualification of Drivers; Exemption Applications; Vision | Rule | Federal Register Publication | 2010-02-23T05:00:00Z | 2010 | 2 | 2010-02-23T05:00:00Z | 2010-03-26T03:59:59Z | 2024-11-12T04:47:13Z | 2010-03567 | 1 | 0 | 0900006480aabc67 |
| FMCSA-2007-27897-0019 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2007-27897 | Qualification of Drivers; Exemption Renewals; Vision | Rule | Federal Register Publication | 2010-01-12T05:00:00Z | 2010 | 1 | 2010-01-12T05:00:00Z | 2010-01-12T04:59:59Z | 2024-11-12T04:49:13Z | 2010-00198 | 1 | 0 | 0900006480a7bb6b |
| FMCSA-2007-27897-0018 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2007-27897 | 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 | 2010-01-20T04:13:59Z | 2010-00201 | 0 | 0 | 0900006480a7b620 |
| FMCSA-2007-27897-0017 | FMCSA | Qualification of Drivers; Exemption Applications; Vision FMCSA-2007-27897 | 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:13:51Z | 2010-00199 | 1 | 0 | 0900006480a7b5c9 |
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;