documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2003-15946" and posted_year = 2003 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2003-15946-0005 | DOT | None DOT-OST-2003-15946 | Amended Notice of Action Taken re: US Airways, Inc. and Deutsche Lufthansa AG (Lufthansa) | Notice | Notice | 2003-10-16T04:00:00Z | 2003 | 10 | 2003-10-16T04:00:00Z | 2003-10-17T03:59:59Z | 2024-11-11T22:35:09Z | 1 | 0 | 09000064802c156c | |
| DOT-OST-2003-15946-0004 | DOT | None DOT-OST-2003-15946 | Notice of Action Taken re: US Airways, Inc. and Deutsche Lufthansa AG (Lufthansa) | Notice | Notice | 2003-10-10T04:00:00Z | 2003 | 10 | 2003-10-10T04:00:00Z | 2003-10-11T03:59:59Z | 2024-11-11T22:35:08Z | 1 | 0 | 09000064802c156a | |
| DOT-OST-2003-15946-0003-0002 | DOT | None DOT-OST-2003-15946 | Joint Application of US Airways and Deutsche Lufthansa AG | Other | Correction(s) | 2003-09-05T04:00:00Z | 2003 | 9 | 2003-09-05T04:00:00Z | 2003-09-06T03:59:59Z | 2024-11-11T22:34:51Z | 1 | 0 | 09000064802c1565 | |
| DOT-OST-2003-15946-0003-0001 | DOT | None DOT-OST-2003-15946 | Joint Application of US Airways and Deutsche Lufthansa AG | Other | Correction(s) | 2003-09-05T04:00:00Z | 2003 | 9 | 2003-09-05T04:00:00Z | 2003-09-06T03:59:59Z | 2024-11-11T22:34:50Z | 1 | 0 | 09000064802c1562 | |
| DOT-OST-2003-15946-0003-0003 | DOT | None DOT-OST-2003-15946 | Joint Application of US Airways and Deutsche Lufthansa AG | Other | Correction(s) | 2003-09-05T04:00:00Z | 2003 | 9 | 2003-09-05T04:00:00Z | 2003-09-06T03:59:59Z | 2024-11-11T22:35:08Z | 1 | 0 | 09000064802c1567 | |
| DOT-OST-2003-15946-0002-0001 | DOT | None DOT-OST-2003-15946 | US Airways, Inc. | Other | Letter(s) | 2003-08-26T04:00:00Z | 2003 | 8 | 2003-08-26T04:00:00Z | 2003-08-27T03:59:59Z | 2024-11-11T22:34:50Z | 1 | 0 | 09000064802c1556 | |
| DOT-OST-2003-15946-0002-0002 | DOT | None DOT-OST-2003-15946 | US Airways, Inc. | Other | Letter(s) | 2003-08-26T04:00:00Z | 2003 | 8 | 2003-08-26T04:00:00Z | 2003-08-27T03:59:59Z | 2024-11-11T22:34:50Z | 1 | 0 | 09000064802c1559 | |
| DOT-OST-2003-15946-0001-0001 | DOT | None DOT-OST-2003-15946 | Application of US Airways, Inc. and Deutsche Lufthansa AG for Statements of Authorization and Exemption | Other | Application-Other | 2003-08-13T04:00:00Z | 2003 | 8 | 2003-08-13T04:00:00Z | 2003-08-14T03:59:59Z | 2024-11-11T22:34:09Z | 1 | 0 | 09000064802c1504 | |
| DOT-OST-2003-15946-0001-0003 | DOT | None DOT-OST-2003-15946 | Application of US Airways, Inc. and Deutsche Lufthansa AG for Statements of Authorization and Exemption | Other | Application-Other | 2003-08-13T04:00:00Z | 2003 | 8 | 2003-08-13T04:00:00Z | 2003-08-14T03:59:59Z | 2024-11-11T22:34:10Z | 1 | 0 | 09000064802c1530 | |
| DOT-OST-2003-15946-0001-0002 | DOT | None DOT-OST-2003-15946 | Application of US Airways, Inc. and Deutsche Lufthansa AG for Statements of Authorization and Exemption | Other | Application-Other | 2003-08-13T04:00:00Z | 2003 | 8 | 2003-08-13T04:00:00Z | 2003-08-14T03:59:59Z | 2024-11-11T22:34:09Z | 1 | 0 | 09000064802c152e |
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;