documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2009-0337" 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-2009-0337-0040 | DOT | None DOT-OST-2009-0337 | Joint Applicants' Reply to Answer of United Airlines, Inc. | Other | Reply | 2020-04-06T04:00:00Z | 2020 | 4 | 2020-04-06T04:00:00Z | 2024-11-06T23:33:35Z | 1 | 0 | 090000648448c6d6 | ||
| DOT-OST-2009-0337-0039 | DOT | None DOT-OST-2009-0337 | Answer of United Airlines, Inc. | Other | Answer | 2020-03-27T04:00:00Z | 2020 | 3 | 2020-03-27T04:00:00Z | 2024-11-12T23:18:45Z | 1 | 0 | 090000648446fa0e | ||
| DOT-OST-2009-0337-0038 | DOT | None DOT-OST-2009-0337 | Notice of Action Taken re: American Airlines, Inc. and Qatar Airways Group QCSC | Other | Decision | 2020-03-18T04:00:00Z | 2020 | 3 | 2020-03-18T04:00:00Z | 2024-11-12T23:18:31Z | 1 | 0 | 09000064844522e3 | ||
| DOT-OST-2009-0337-0037 | DOT | None DOT-OST-2009-0337 | Joint Application of American Airlines, Inc. and Philippine Airlines, Inc. for Statements of Authorization, Exemption, and an Amended Exemption | Other | Application-Other | 2020-03-18T04:00:00Z | 2020 | 3 | 2020-03-18T04:00:00Z | 2024-11-12T23:18:44Z | 1 | 0 | 090000648444ef4d | ||
| DOT-OST-2009-0337-0036 | DOT | None DOT-OST-2009-0337 | American Airlines, Inc. and Qatar Airways Group QCSC (Polling Letter) | Other | Letter(s) | 2020-03-11T04:00:00Z | 2020 | 3 | 2020-03-11T04:00:00Z | 2024-11-12T23:18:51Z | 1 | 0 | 090000648443b2f7 | ||
| DOT-OST-2009-0337-0035 | DOT | None DOT-OST-2009-0337 | Joint Application of American Airlines, Inc. and Qatar Airways Group QCSC for Blanket Statements of Authorization and an Amended Exemption | Other | Application-Other | 2020-03-10T04:00:00Z | 2020 | 3 | 2020-03-10T04:00:00Z | 2024-11-12T23:18:23Z | 1 | 0 | 090000648440d8df | ||
| DOT-OST-2009-0337-0034 | DOT | None DOT-OST-2009-0337 | Notice of Action Taken re: American Airlines, Inc. and GOL Linhas Aereas S.A. f/k/a VGR Linhas Aereas S.A. | Other | Decision | 2020-02-10T05:00:00Z | 2020 | 2 | 2020-02-10T05:00:00Z | 2024-11-12T23:17:26Z | 1 | 0 | 0900006484347ffe | ||
| DOT-OST-2009-0337-0033 | DOT | None DOT-OST-2009-0337 | American Airlines, Inc. and GOL Linhas Aereas S.A. (Polling Letter) | Other | Letter(s) | 2020-02-06T05:00:00Z | 2020 | 2 | 2020-02-06T05:00:00Z | 2024-11-12T23:16:58Z | 1 | 0 | 0900006484331f6b | ||
| DOT-OST-2009-0337-0032 | DOT | None DOT-OST-2009-0337 | Joint Application of American Airlines, Inc. and GOL Linhas Aereas S.A. for Blanket Statements of Authorization and an Amended Exemption | Other | Application-Other | 2020-02-04T05:00:00Z | 2020 | 2 | 2020-02-04T05:00:00Z | 2024-11-12T23:17:05Z | 1 | 0 | 0900006484326e77 |
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;