documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-1997-3069" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, posted_date (date), comment_start_date (date), comment_end_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-1997-3069-0008 | DOT | Trans World Airlines, Inc. - Exemption - Integration of Route 145 Authority to Spain DOT-OST-1997-3069 | Letter of Trans World Airlines, Inc. and Air Europa Lineas Aereas, S.A.U. | Other | Letter(s) | 2000-12-06T05:00:00Z | 2000 | 12 | 2000-12-06T05:00:00Z | 2000-12-08T04:59:59Z | 2024-11-07T18:43:54Z | 1 | 0 | 090000648031e017 | |
| DOT-OST-1997-3069-0007 | DOT | Trans World Airlines, Inc. - Exemption - Integration of Route 145 Authority to Spain DOT-OST-1997-3069 | Notice of Amended and Restated Code Sharing Agreement Between Trans World Airlines, Inc. and Air Europa Lineas Aereas, S.A.U. | Notice | Notice | 2000-11-21T05:00:00Z | 2000 | 11 | 2000-11-21T05:00:00Z | 2000-11-23T04:59:59Z | 2024-11-07T18:43:54Z | 1 | 0 | 090000648031e016 | |
| DOT-OST-1997-3069-0006 | DOT | Trans World Airlines, Inc. - Exemption - Integration of Route 145 Authority to Spain DOT-OST-1997-3069 | Interim Notice of Action Taken: re Trans World Airlines, Inc. | Notice | Notice | 1998-04-30T04:00:00Z | 1998 | 4 | 1998-04-30T04:00:00Z | 1998-05-02T03:59:59Z | 2024-11-07T18:43:33Z | 1 | 0 | 090000648031e015 | |
| DOT-OST-1997-3069-0005 | DOT | Trans World Airlines, Inc. - Exemption - Integration of Route 145 Authority to Spain DOT-OST-1997-3069 | Trans World Airlines, Inc. and Air Europa Lineas Aereas, S.A. - Consolidated Reply | Other | Consolidated Reply | 1997-11-24T05:00:00Z | 1997 | 11 | 1997-11-24T05:00:00Z | 1997-11-25T04:59:59Z | 2024-11-07T18:43:33Z | 1 | 0 | 090000648031e014 | |
| DOT-OST-1997-3069-0003 | DOT | Trans World Airlines, Inc. - Exemption - Integration of Route 145 Authority to Spain DOT-OST-1997-3069 | American Airlines, Inc. - Answer | Other | Answer | 1997-11-14T05:00:00Z | 1997 | 11 | 1997-11-14T05:00:00Z | 1997-11-15T04:59:59Z | 2024-11-07T18:43:32Z | 1 | 0 | 090000648031e012 | |
| DOT-OST-1997-3069-0004 | DOT | Trans World Airlines, Inc. - Exemption - Integration of Route 145 Authority to Spain DOT-OST-1997-3069 | Delta Air Lines, Inc. - Answer | Other | Answer | 1997-11-14T05:00:00Z | 1997 | 11 | 1997-11-14T05:00:00Z | 1997-11-15T04:59:59Z | 2024-11-07T18:43:33Z | 1 | 0 | 090000648031e013 | |
| DOT-OST-1997-3069-0002 | DOT | Trans World Airlines, Inc. - Exemption - Integration of Route 145 Authority to Spain DOT-OST-1997-3069 | United Air Lines, Inc. - Consolidated Answer | Other | Consolidated Answer | 1997-11-10T05:00:00Z | 1997 | 11 | 1997-11-10T05:00:00Z | 1997-11-11T04:59:59Z | 2024-11-07T18:43:32Z | 1 | 0 | 090000648031e011 | |
| DOT-OST-1997-3069-0001 | DOT | Trans World Airlines, Inc. - Exemption - Integration of Route 145 Authority to Spain DOT-OST-1997-3069 | Trans World Airlines, Inc. - Exemption - Integration of Route 145 Authority to Spain | Other | Application-Other | 1997-10-30T05:00:00Z | 1997 | 10 | 1997-10-30T05:00:00Z | 1997-10-31T04:59:59Z | 2024-11-07T18:43:32Z | 1 | 0 | 090000648031e010 |
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;