documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2003-14528" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-14528-0097 | DOT | None DOT-OST-2003-14528 | 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 | 090000648112bf9b | ||
| DOT-OST-2003-14528-0096 | DOT | None DOT-OST-2003-14528 | 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-11T20:42:08Z | 0 | 0 | 090000648112942c | |||
| DOT-OST-2003-14528-0095 | DOT | None DOT-OST-2003-14528 | Bradford Regional Airport Authority | Other | Correspondence | 2012-08-08T04:00:00Z | 2012 | 8 | 2012-08-08T04:00:00Z | 2013-03-06T03:56:00Z | 0 | 0 | 09000064810c6604 | ||
| DOT-OST-2003-14528-0094 | DOT | None DOT-OST-2003-14528 | Request For Comments on EAS Proposals | Other | Request | 2012-07-17T04:00:00Z | 2012 | 7 | 2012-07-17T04:00:00Z | 2024-11-07T22:42:37Z | 1 | 0 | 090000648109e37a | ||
| DOT-OST-2003-14528-0093 | DOT | None DOT-OST-2003-14528 | Terry H. Moore | Other | Correspondence | 2012-07-09T04:00:00Z | 2012 | 7 | 2012-07-03T04:00:00Z | 2015-02-10T13:44:37Z | 0 | 0 | 090000648107e00c | ||
| DOT-OST-2003-14528-0091 | DOT | None DOT-OST-2003-14528 | 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:43:27Z | 1 | 0 | 0900006481077a28 | ||
| DOT-OST-2003-14528-0092 | DOT | None DOT-OST-2003-14528 | TransportAzumah Proposal for Essential Air Service | Other | Proposal(s) | 2012-07-03T04:00:00Z | 2012 | 7 | 2012-07-03T04:00:00Z | 2024-11-07T22:42:04Z | 1 | 0 | 0900006481077b20 | ||
| DOT-OST-2003-14528-0090 | DOT | None DOT-OST-2003-14528 | Granted Extension Due Date | Other | Decision | 2012-06-28T04:00:00Z | 2012 | 6 | 2012-06-28T04:00:00Z | 2024-11-07T22:44:20Z | 1 | 0 | 090000648106d426 | ||
| DOT-OST-2003-14528-0089 | DOT | None DOT-OST-2003-14528 | 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:42:29Z | 1 | 0 | 090000648106bf55 | ||
| DOT-OST-2003-14528-0088 | DOT | None DOT-OST-2003-14528 | Memorandum re: Request for Extension | Other | Memo | 2012-06-06T04:00:00Z | 2012 | 6 | 2012-06-06T04:00:00Z | 2012-06-06T19:04:56Z | 0 | 0 | 0900006481036380 | ||
| DOT-OST-2003-14528-0087 | DOT | None DOT-OST-2003-14528 | 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:37Z | 1 | 0 | 0900006481031590 | ||
| DOT-OST-2003-14528-0086 | DOT | None DOT-OST-2003-14528 | 2012-5-10 Order Requesting Proposals | Other | Order | 2012-05-09T04:00:00Z | 2012 | 5 | 2012-05-09T04:00:00Z | 2024-11-07T22:16:03Z | 1 | 0 | 0900006481009547 |
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;