documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "DOT-OST-2016-0021" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2016-0021-1424 | DOT | None DOT-OST-2016-0021 | Application of Delta Air Lines, Inc. for Renewal of an Exemption | Other | Application-Other | 2020-05-22T04:00:00Z | 2020 | 5 | 2020-05-22T04:00:00Z | 2024-11-12T23:20:25Z | 1 | 0 | 0900006484675b76 | ||
| DOT-OST-2016-0021-1423 | DOT | None DOT-OST-2016-0021 | Application of United Airlines, Inc. for Renewal of an Exemption | Other | Application-Other | 2020-05-21T04:00:00Z | 2020 | 5 | 2020-05-21T04:00:00Z | 2024-11-12T23:20:32Z | 1 | 0 | 0900006484664266 | ||
| DOT-OST-2016-0021-1422 | DOT | None DOT-OST-2016-0021 | Notice of Action Taken re: United Airlines, Inc. (July 25, 2018) | Other | Decision | 2020-05-18T04:00:00Z | 2020 | 5 | 2020-05-18T04:00:00Z | 2024-11-06T23:36:46Z | 1 | 0 | 0900006484636595 | ||
| DOT-OST-2016-0021-1421 | DOT | None DOT-OST-2016-0021 | Application of Southwest Airlines Co. for Renewal of Exemption Authority | Other | Application-Other | 2020-05-11T04:00:00Z | 2020 | 5 | 2020-05-11T04:00:00Z | 2024-11-06T23:36:11Z | 1 | 0 | 09000064845ba4a4 | ||
| DOT-OST-2016-0021-1419 | DOT | None DOT-OST-2016-0021 | Application of JetBlue Airways Corporation for Renewal of Exemption Authority | Other | Application-Other | 2020-05-01T04:00:00Z | 2020 | 5 | 2020-05-01T04:00:00Z | 2024-11-06T23:35:48Z | 1 | 0 | 0900006484528130 | ||
| DOT-OST-2016-0021-1420 | DOT | None DOT-OST-2016-0021 | Application of American Airlines, Inc. for Renewal of an Exemption | Other | Application-Other | 2020-05-01T04:00:00Z | 2020 | 5 | 2020-05-01T04:00:00Z | 2024-11-12T23:19:15Z | 1 | 0 | 090000648452f78e | ||
| DOT-OST-2016-0021-1418 | DOT | None DOT-OST-2016-0021 | Joint Application of Envoy Air, Inc. and PSA Airlines, Inc. for Renewal of Exemption Authority | Other | Application-Other | 2020-04-02T04:00:00Z | 2020 | 4 | 2020-04-02T04:00:00Z | 2024-11-06T23:34:16Z | 1 | 0 | 090000648448390d | ||
| DOT-OST-2016-0021-1417 | DOT | None DOT-OST-2016-0021 | Application of Republic Airways Inc. for Renewal of Exemption Authority | Other | Application-Other | 2020-02-13T05:00:00Z | 2020 | 2 | 2020-02-13T05:00:00Z | 2024-11-06T23:31:45Z | 1 | 0 | 090000648435db06 | ||
| DOT-OST-2016-0021-1416 | DOT | None DOT-OST-2016-0021 | Application of American Airlines, Inc. for Allocation of Fourteen Weekly Combination Frequencies (Miami-Havana) | Other | Application-Other | 2020-01-28T05:00:00Z | 2020 | 1 | 2020-01-28T05:00:00Z | 2024-11-12T23:16:49Z | 1 | 0 | 09000064842fd6ed | ||
| DOT-OST-2016-0021-1415 | DOT | None DOT-OST-2016-0021 | Application of Mesa Airlines, Inc. for Renewal of Exemption Authority | Other | Application-Other | 2020-01-22T05:00:00Z | 2020 | 1 | 2020-01-22T05:00:00Z | 2024-11-12T23:16:16Z | 1 | 0 | 09000064842da914 | ||
| DOT-OST-2016-0021-1414 | DOT | None DOT-OST-2016-0021 | jetBlue Airways Corporation - Return of U.S. Cuba Frequencies | Other | Correspondence | 2020-01-16T05:00:00Z | 2020 | 1 | 2020-01-16T05:00:00Z | 2024-11-12T23:16:06Z | 1 | 0 | 09000064842b32de |
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;