documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "DOT-OST-2003-14528" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, last_modified, open_for_comment, withdrawn, 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-0085 | DOT | None DOT-OST-2003-14528 | 2010-9-12 Order Selecting Carrier | Other | Order | 2010-09-10T04:00:00Z | 2010 | 9 | 2010-09-10T04:00:00Z | 2010-09-10T13:51:18Z | 0 | 0 | 0900006480b4b7ed | ||
| DOT-OST-2003-14528-0084 | DOT | None DOT-OST-2003-14528 | Ricky D. Smith | Other | Other | 2010-08-06T04:00:00Z | 2010 | 8 | 2010-08-06T04:00:00Z | 2024-11-07T22:24:19Z | 1 | 0 | 0900006480b2adc3 | ||
| DOT-OST-2003-14528-0082 | DOT | None DOT-OST-2003-14528 | Honorable Arlen Specter, Honorable Robert P. Casey, Jr. and Honorable Glenn "GT" Thompson | Other | Other | 2010-08-02T04:00:00Z | 2010 | 8 | 2010-08-02T04:00:00Z | 2024-11-07T22:23:26Z | 1 | 0 | 0900006480b26a75 | ||
| DOT-OST-2003-14528-0083 | DOT | None DOT-OST-2003-14528 | Bradford Regional Airport | Other | Other | 2010-08-02T04:00:00Z | 2010 | 8 | 2010-08-02T04:00:00Z | 2024-11-07T22:24:08Z | 1 | 0 | 0900006480b26220 | ||
| DOT-OST-2003-14528-0081 | DOT | None DOT-OST-2003-14528 | Honorable Tom Riel (City of Bradford) | Other | Letter(s) | 2010-07-09T04:00:00Z | 2010 | 7 | 2010-07-09T04:00:00Z | 2024-11-07T22:20:15Z | 1 | 0 | 0900006480b15b5f | ||
| DOT-OST-2003-14528-0080 | DOT | None DOT-OST-2003-14528 | Thomas C. Frungillo (Bradford Regional Airport) | Other | Letter(s) | 2010-07-09T04:00:00Z | 2010 | 7 | 2010-07-09T04:00:00Z | 2024-11-07T22:20:15Z | 1 | 0 | 0900006480b15b5e | ||
| DOT-OST-2003-14528-0079 | DOT | None DOT-OST-2003-14528 | Gulfstream International Airlines Proposal to Provide Subsidized Air Service at Bradford, Pennsylvania; Franklin/Oil City, Pennsylvania; Dubois, Pennsylvania; and Jamestown, New York | Other | Proposal(s) | 2010-07-06T04:00:00Z | 2010 | 7 | 2010-07-06T04:00:00Z | 2024-11-07T22:20:22Z | 1 | 0 | 0900006480b13cd2 | ||
| DOT-OST-2003-14528-0078 | DOT | None DOT-OST-2003-14528 | Gulfstream International Airlines Proposal to Provide Subsidized Air Service at Bradford, Pennsylvania; Franklin/Oil City, Pennsylvania; Dubois, Pennsylvania; and Jamestown, New York | Other | 2010-07-06T00:00:00Z | 2010 | 7 | 2024-11-07T22:18:56Z | 0 | 1 | 0900006480b0ffde | ||||
| DOT-OST-2003-14528-0077 | DOT | None DOT-OST-2003-14528 | Memorandum | Other | Memo, Action Memo or Letter | 2010-06-17T04:00:00Z | 2010 | 6 | 2010-06-17T04:00:00Z | 2024-11-07T22:17:23Z | 1 | 0 | 0900006480b04576 | ||
| DOT-OST-2003-14528-0076 | DOT | None DOT-OST-2003-14528 | Request for Submission Deadline Extention by Gulfstream International Airlines | Other | Request | 2010-06-17T04:00:00Z | 2010 | 6 | 2010-06-17T04:00:00Z | 2024-11-07T22:17:23Z | 1 | 0 | 0900006480b04575 | ||
| DOT-OST-2003-14528-0075 | DOT | None DOT-OST-2003-14528 | 2010-5-22 Order Requesting Proposals | Other | Order | 2010-05-19T04:00:00Z | 2010 | 5 | 2010-05-19T04:00:00Z | 2024-11-07T22:17:44Z | 1 | 0 | 0900006480af00c8 |
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;