documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "DOT-OST-2010-0073" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2010-0073-0011 | DOT | None DOT-OST-2010-0073 | Application of Delta Air Lines, Inc., for Renewal of an Exemption | Other | Application-Other | 2023-09-29T04:00:00Z | 2023 | 9 | 2023-09-29T04:00:00Z | 2024-11-07T00:53:01Z | 1 | 0 | 0900006486012b15 | ||
| DOT-OST-2010-0073-0010 | DOT | None DOT-OST-2010-0073 | Notice of Action Taken re: Delta Air Lines, Inc. | Other | Decision | 2021-11-29T05:00:00Z | 2021 | 11 | 2021-11-29T05:00:00Z | 2024-11-07T00:35:16Z | 1 | 0 | 0900006484e89207 | ||
| DOT-OST-2010-0073-0009 | DOT | None DOT-OST-2010-0073 | Application of Delta Air Lines, Inc. for Renewal of an Exemption | Other | Application-Other | 2021-10-13T04:00:00Z | 2021 | 10 | 2021-10-13T04:00:00Z | 2024-11-07T00:32:33Z | 1 | 0 | 0900006484dc2816 | ||
| DOT-OST-2010-0073-0008 | DOT | None DOT-OST-2010-0073 | Notice of Action Taken re: Delta Air Lines, Inc. and Vietnam Airlines JSC | Other | Decision | 2019-12-12T05:00:00Z | 2019 | 12 | 2019-12-12T05:00:00Z | 2024-11-12T23:14:31Z | 1 | 0 | 0900006484207910 | ||
| DOT-OST-2010-0073-0007 | DOT | None DOT-OST-2010-0073 | Joint Application of Delta Air Lines, Inc. and Vietnam Airlines JSC for an Exemption and Statements of Authorization | Other | Application-Other | 2019-10-11T04:00:00Z | 2019 | 10 | 2019-10-11T04:00:00Z | 2024-11-12T23:10:03Z | 1 | 0 | 09000064840808fe | ||
| DOT-OST-2010-0073-0006 | DOT | None DOT-OST-2010-0073 | Notice of Additional Codesharing and Request for Waiver From 30 Day Advance Notice Requirement | Other | Request | 2011-06-13T04:00:00Z | 2011 | 6 | 2011-06-13T04:00:00Z | 2019-10-12T23:55:04Z | 0 | 0 | 0900006480e4e13e | ||
| DOT-OST-2010-0073-0005 | DOT | None DOT-OST-2010-0073 | Approval of Application | Other | Decision | 2011-06-10T04:00:00Z | 2011 | 6 | 2011-06-10T04:00:00Z | 2011-06-10T20:21:35Z | 0 | 0 | 0900006480e4448d | ||
| DOT-OST-2010-0073-0004 | DOT | None DOT-OST-2010-0073 | Delta Air Lines, Inc. and Vietnam Airlines Corporation | Other | Correspondence | 2011-06-09T04:00:00Z | 2011 | 6 | 2011-06-09T04:00:00Z | 2013-07-27T23:55:12Z | 0 | 0 | 0900006480e3e344 | ||
| DOT-OST-2010-0073-0003 | DOT | None DOT-OST-2010-0073 | Approval of Application | Other | Decision | 2010-04-23T04:00:00Z | 2010 | 4 | 2010-04-23T04:00:00Z | 2024-11-12T04:53:54Z | 1 | 0 | 0900006480ade1ab | ||
| DOT-OST-2010-0073-0002 | DOT | None DOT-OST-2010-0073 | Delta Air Lines, Inc. | Other | Correspondence | 2010-04-01T04:00:00Z | 2010 | 4 | 2010-04-01T04:00:00Z | 2024-11-12T04:51:03Z | 1 | 0 | 0900006480ac747b | ||
| DOT-OST-2010-0073-0001 | DOT | None DOT-OST-2010-0073 | Application of Delta Air Lines, Inc. for a Statement of Authorization | Other | Application-Other | 2010-03-24T04:00:00Z | 2010 | 3 | 2010-03-24T04:00:00Z | 2024-11-12T04:53:53Z | 1 | 0 | 0900006480ac6a97 |
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;