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 = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, 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-1410 | DOT | None DOT-OST-2016-0021 | Notice (Suspending US-Cuba Scheduled Services via Non-Havana Points) | Other | Decision | 2019-10-25T04:00:00Z | 2019 | 10 | 2019-10-25T04:00:00Z | 2024-11-12T23:11:03Z | 1 | 0 | 09000064840fb15e | ||
| DOT-OST-2016-0021-1409 | DOT | None DOT-OST-2016-0021 | Approval of the Motion of American Airlines, Inc. for a Start-Up Date Extension | Other | Decision | 2019-04-30T04:00:00Z | 2019 | 4 | 2019-04-30T04:00:00Z | 2024-11-12T22:59:54Z | 1 | 0 | 0900006483c20b3b | ||
| DOT-OST-2016-0021-1408 | DOT | None DOT-OST-2016-0021 | American Airlines, Inc. (Polling Letter) | Other | Letter(s) | 2019-04-30T04:00:00Z | 2019 | 4 | 2019-04-30T04:00:00Z | 2024-11-12T22:59:36Z | 1 | 0 | 0900006483c17772 | ||
| DOT-OST-2016-0021-1407 | DOT | None DOT-OST-2016-0021 | Motion of American Airlines, Inc. for a Start-up Date Extension | Other | Motion | 2019-04-29T04:00:00Z | 2019 | 4 | 2019-04-29T04:00:00Z | 2024-11-12T23:00:47Z | 1 | 0 | 0900006483c019f3 | ||
| DOT-OST-2016-0021-1406 | DOT | None DOT-OST-2016-0021 | 2019-4-7 Final Order | Other | Order | 2019-04-05T04:00:00Z | 2019 | 4 | 2019-04-05T04:00:00Z | 2024-11-12T22:58:11Z | 1 | 0 | 0900006483b6c2ac | ||
| DOT-OST-2016-0021-1405 | DOT | None DOT-OST-2016-0021 | Comments of American Airlines, Inc. to Show Cause Order 2019-3-9 | Other | Correspondence | 2019-04-01T04:00:00Z | 2019 | 4 | 2019-03-18T04:00:00Z | 2024-11-12T22:57:48Z | 1 | 0 | 0900006483b4bb2b | ||
| DOT-OST-2016-0021-1403 | DOT | None DOT-OST-2016-0021 | 2019-3-9 Order to Show Cause | Other | Order | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T04:00:00Z | 2024-11-12T22:57:29Z | 1 | 0 | 0900006483afb9c2 | ||
| DOT-OST-2016-0021-1402 | DOT | None DOT-OST-2016-0021 | Reply of American Airlines, Inc. | Other | Reply | 2019-01-15T05:00:00Z | 2019 | 1 | 2019-01-15T05:00:00Z | 2024-11-12T22:53:18Z | 1 | 0 | 09000064839f07c1 | ||
| DOT-OST-2016-0021-1401 | DOT | None DOT-OST-2016-0021 | Reply of JetBlue Airways Corporation | Other | Reply | 2019-01-15T05:00:00Z | 2019 | 1 | 2019-01-15T05:00:00Z | 2024-11-12T22:53:18Z | 1 | 0 | 09000064839f07bc | ||
| DOT-OST-2016-0021-1399 | DOT | None DOT-OST-2016-0021 | Answer of American Airlines, Inc. to Application of JetBlue Airways Corp. | Other | Answer | 2019-01-08T05:00:00Z | 2019 | 1 | 2019-01-08T05:00:00Z | 2024-11-12T22:53:06Z | 1 | 0 | 09000064839e1915 | ||
| DOT-OST-2016-0021-1400 | DOT | None DOT-OST-2016-0021 | Answer of JetBlue Airways Corporation | Other | Answer | 2019-01-08T05:00:00Z | 2019 | 1 | 2019-01-08T05:00:00Z | 2024-11-12T22:53:27Z | 1 | 0 | 09000064839e1702 |
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;