documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2005-20734" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2005-20734-0114 | DOT | None DOT-OST-2005-20734 | 2012-9-23 Order Selecting Carrier | Other | Order | 2012-09-27T04:00:00Z | 2012 | 9 | 2012-09-27T04:00:00Z | 2024-11-11T20:41:54Z | 1 | 0 | 090000648112bfc4 | ||
| DOT-OST-2005-20734-0113 | DOT | None DOT-OST-2005-20734 | Supplemental Information on Silver Airways' Proposal to Provide Subsidized Air Service to the Communities of Bradford, DuBois, and Franklin/Oil City, Pennsylvania as well as Jamestown, New York and Parkersburg, West Virginia/Marietta, Ohio | Supporting & Related Material | Supplement | 2012-09-26T04:00:00Z | 2012 | 9 | 2024-11-12T05:07:08Z | 0 | 0 | 0900006481129463 | |||
| DOT-OST-2005-20734-0112 | DOT | None DOT-OST-2005-20734 | Mid Ohio Valley Regional Airport Authority | Other | Correspondence | 2012-08-08T04:00:00Z | 2012 | 8 | 2012-08-08T04:00:00Z | 2013-03-06T03:56:00Z | 0 | 0 | 09000064810c6600 | ||
| DOT-OST-2005-20734-0111 | DOT | None DOT-OST-2005-20734 | Request For Comments on EAS Proposals | Other | Request | 2012-07-17T04:00:00Z | 2012 | 7 | 2012-07-17T04:00:00Z | 2024-11-07T22:42:14Z | 1 | 0 | 090000648109e41d | ||
| DOT-OST-2005-20734-0110 | DOT | None DOT-OST-2005-20734 | Silver Airways Proposal to Provide Subsidized Air Service | Other | Proposal(s) | 2012-07-03T04:00:00Z | 2012 | 7 | 2012-07-03T04:00:00Z | 2024-11-07T22:42:04Z | 1 | 0 | 0900006481077a2f | ||
| DOT-OST-2005-20734-0109 | DOT | None DOT-OST-2005-20734 | Granted Extension Due Date | Other | Decision | 2012-06-28T04:00:00Z | 2012 | 6 | 2012-06-28T04:00:00Z | 2012-06-28T14:21:21Z | 0 | 0 | 090000648106d4a1 | ||
| DOT-OST-2005-20734-0108 | DOT | None DOT-OST-2005-20734 | Request for Further Submission Deadline Extension by Silver Airways | Other | Request | 2012-06-27T04:00:00Z | 2012 | 6 | 2012-06-27T04:00:00Z | 2024-11-07T22:40:40Z | 1 | 0 | 090000648106bf5b | ||
| DOT-OST-2005-20734-0107 | DOT | None DOT-OST-2005-20734 | Memorandum re: Request for Extension | Other | Memo | 2012-06-06T04:00:00Z | 2012 | 6 | 2012-06-06T04:00:00Z | 2024-11-12T05:04:17Z | 1 | 0 | 0900006481039550 | ||
| DOT-OST-2005-20734-0106 | DOT | None DOT-OST-2005-20734 | Request for Submission Deadline Extention By Silver Airways | Other | Request | 2012-06-04T04:00:00Z | 2012 | 6 | 2012-06-04T04:00:00Z | 2024-11-07T22:34:38Z | 1 | 0 | 090000648103178e | ||
| DOT-OST-2005-20734-0105 | DOT | None DOT-OST-2005-20734 | 2012-5-10 Order Requesting Proposals | Other | Order | 2012-05-09T04:00:00Z | 2012 | 5 | 2012-05-09T04:00:00Z | 2024-11-07T22:24:26Z | 1 | 0 | 0900006481009573 |
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;