documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2003-14492" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, open_for_comment, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOT-OST-2003-14492-0061 | DOT | None DOT-OST-2003-14492 | 2015-10-19 Order Re-Selecting Air Carrier | Other | Order | 2015-10-26T04:00:00Z | 2015 | 10 | 2015-10-26T04:00:00Z | 2024-11-07T23:24:44Z | 1 | 0 | 0900006481cef438 | ||
| DOT-OST-2003-14492-0060 | DOT | None DOT-OST-2003-14492 | City of Quincy, Illinois - Letter in Support | Other | Letter(s) in Support | 2015-07-01T04:00:00Z | 2015 | 7 | 2015-07-01T04:00:00Z | 2015-07-01T17:22:56Z | 0 | 0 | 0900006481b648c1 | ||
| DOT-OST-2003-14492-0059 | DOT | None DOT-OST-2003-14492 | Cape Air - Letter in Support | Other | Letter(s) in Support | 2015-06-30T04:00:00Z | 2015 | 6 | 2015-06-30T04:00:00Z | 2015-06-30T15:48:34Z | 0 | 0 | 0900006481b57bcf | ||
| DOT-OST-2003-14492-0058 | DOT | None DOT-OST-2003-14492 | EAS at Cape Giratdeau Marion Quincy | Other | Supplemental Comment | 2015-06-25T04:00:00Z | 2015 | 6 | 2015-06-25T04:00:00Z | 2015-06-25T16:18:10Z | 0 | 0 | 0900006481b4cc14 | ||
| DOT-OST-2003-14492-0057 | DOT | None DOT-OST-2003-14492 | EAS at Cape Giratdeau Marion Quincy | Other | Supplemental Comment | 2015-06-22T04:00:00Z | 2015 | 6 | 2015-06-22T04:00:00Z | 2015-06-22T13:50:48Z | 0 | 0 | 0900006481b4cc16 | ||
| DOT-OST-2003-14492-0056 | DOT | None DOT-OST-2003-14492 | Proposal of Hyannis Air Service, Inc., d/b/a Cape Air to Provide Essential Air Service at Cape Girardeau, Missouri, Marion/Herrin, Illinois, and Quincy, Illinois | Other | Proposal(s) | 2015-06-05T04:00:00Z | 2015 | 6 | 2015-06-05T04:00:00Z | 2024-11-11T20:57:56Z | 1 | 0 | 0900006481b1de8e | ||
| DOT-OST-2003-14492-0055 | DOT | None DOT-OST-2003-14492 | Proposal of Multi-Aero, Inc. d/b/a Air Choice One to Provide Essential Air Service at Cape Girardeau/Sikeston, Missouri, Marion/Herrin, Illinois, and Quincy, Illinois/Hannibal, Missouri | Other | Proposal(s) | 2015-06-05T04:00:00Z | 2015 | 6 | 2015-06-05T04:00:00Z | 2024-11-11T20:56:44Z | 1 | 0 | 0900006481b1d8f2 | ||
| DOT-OST-2003-14492-0054 | DOT | None DOT-OST-2003-14492 | Request for Proposals | Other | Request | 2015-05-05T04:00:00Z | 2015 | 5 | 2015-05-05T04:00:00Z | 2024-11-07T23:23:12Z | 1 | 0 | 0900006481acc9e8 | ||
| DOT-OST-2003-14492-0053 | DOT | None DOT-OST-2003-14492 | 2015-4-26 Order Requesting Proposals | Other | Order | 2015-04-30T04:00:00Z | 2015 | 4 | 2015-04-30T04:00:00Z | 2018-02-06T20:42:15Z | 0 | 0 | 0900006481ac5eb4 |
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;