documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "DOT-OST-2011-0076" and posted_year = 2014 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-2011-0076-0050 | DOT | None DOT-OST-2011-0076 | Application of United Airlines, Inc. for Renewal and Amendment of Certificate Authority | Other | Application-SubPartB | 2014-12-03T05:00:00Z | 2014 | 12 | 2014-12-03T05:00:00Z | 2024-11-11T20:55:12Z | 1 | 0 | 0900006481958fd4 | ||
| DOT-OST-2011-0076-0049 | DOT | None DOT-OST-2011-0076 | 2014-12-1 Order Issuing Certificate | Other | Order | 2014-12-02T05:00:00Z | 2014 | 12 | 2014-12-02T05:00:00Z | 2024-11-12T05:30:32Z | 1 | 0 | 09000064819554e4 | ||
| DOT-OST-2011-0076-0048 | DOT | None DOT-OST-2011-0076 | United Airlines, Inc. (Notice of Service Level Changes Chicago-San Jose del Cabo, Mexico) | Other | Letter(s) | 2014-10-21T04:00:00Z | 2014 | 10 | 2014-10-21T04:00:00Z | 2024-11-07T23:11:40Z | 1 | 0 | 09000064818b4402 | ||
| DOT-OST-2011-0076-0047 | DOT | None DOT-OST-2011-0076 | United Airlines Inc. (Letter Advising Discontinuance of Service) | Other | Letter(s) | 2014-09-25T04:00:00Z | 2014 | 9 | 2014-09-25T04:00:00Z | 2024-11-07T23:11:25Z | 1 | 0 | 090000648188e87b | ||
| DOT-OST-2011-0076-0046 | DOT | None DOT-OST-2011-0076 | Frontier Airlines, Inc. (Notification of Intent to Discontinue Seasonal Service) | Other | Letter(s) | 2014-09-23T04:00:00Z | 2014 | 9 | 2014-09-23T04:00:00Z | 2024-11-11T20:54:39Z | 1 | 0 | 0900006481887196 | ||
| DOT-OST-2011-0076-0045 | DOT | None DOT-OST-2011-0076 | Notice of Dormancy | Other | Letter(s) | 2014-08-19T04:00:00Z | 2014 | 8 | 2014-08-19T04:00:00Z | 2024-11-07T23:11:19Z | 1 | 0 | 0900006481830df3 | ||
| DOT-OST-2011-0076-0044 | DOT | None DOT-OST-2011-0076 | Application of Frontier Airlines, Inc. for a Certificate of Public Convenience and Necessity | Other | Application-SubPartB | 2014-07-31T04:00:00Z | 2014 | 7 | 2014-07-31T04:00:00Z | 2024-11-12T05:28:03Z | 1 | 0 | 09000064817f2f81 | ||
| DOT-OST-2011-0076-0043 | DOT | None DOT-OST-2011-0076 | 2014-4-13 Order | Other | Order | 2014-04-15T04:00:00Z | 2014 | 4 | 2014-04-15T04:00:00Z | 2018-02-12T20:03:31Z | 0 | 0 | 09000064816b4b31 | ||
| DOT-OST-2011-0076-0042 | DOT | None DOT-OST-2011-0076 | United Airlines, Inc. (Notice of Service Level Changes) | Other | Letter(s) | 2014-03-18T04:00:00Z | 2014 | 3 | 2024-11-07T23:04:48Z | 1 | 0 | 090000648166231f | |||
| DOT-OST-2011-0076-0041 | DOT | None DOT-OST-2011-0076 | Application of JetBlue Airways Corporation for Renewal of Certificate to Provide Foreign Scheduled Air Transportation | Other | Application-SubPartB | 2014-03-11T04:00:00Z | 2014 | 3 | 2014-03-11T04:00:00Z | 2024-11-12T05:25:38Z | 1 | 0 | 090000648160d184 | ||
| DOT-OST-2011-0076-0040 | DOT | None DOT-OST-2011-0076 | Notice of Republic Airline Inc. of Dormancy | Other | Letter(s) | 2014-03-04T05:00:00Z | 2014 | 3 | 2014-03-04T05:00:00Z | 2024-11-11T20:49:33Z | 1 | 0 | 09000064815de7dd |
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;