documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2008-0234" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2008-0234-0346 | DOT | None DOT-OST-2008-0234 | Alaska Airlines Inc. (Confidentiality Affidavits) | Other | Affidavit(s) | 2025-12-08T05:00:00Z | 2025 | 12 | 2025-12-08T05:00:00Z | 2025-12-08T23:05:01Z | 1 | 0 | 09000064b90b78ad | ||
| DOT-OST-2008-0234-0345 | DOT | None DOT-OST-2008-0234 | American Airlines Inc. (Confidentiality Affidavits) | Other | Affidavit(s) | 2025-11-06T05:00:00Z | 2025 | 11 | 2025-11-06T05:00:00Z | 2025-11-06T18:12:42Z | 1 | 0 | 09000064b906e4f7 | ||
| DOT-OST-2008-0234-0344 | DOT | None DOT-OST-2008-0234 | Allegiant Air, LLC (Confidentiality Affidavits) | Other | Affidavit(s) | 2025-10-28T04:00:00Z | 2025 | 10 | 2025-10-28T04:00:00Z | 2025-10-28T16:57:00Z | 1 | 0 | 09000064b90571c2 | ||
| DOT-OST-2008-0234-0343 | DOT | None DOT-OST-2008-0234 | Notice (Access to Documents) | Other | Decision | 2025-10-08T04:00:00Z | 2025 | 10 | 2025-10-08T04:00:00Z | 2025-11-08T12:31:34Z | 1 | 0 | 09000064b8ffdd43 | ||
| DOT-OST-2008-0234-0342 | DOT | None DOT-OST-2008-0234 | Joint Motion of Air Canada, Deutsche Lufthansa AG, and United Airlines, Inc. to Amend Order 2009-7-10 and Motion for Confidential Treatment | Other | Motion | 2025-10-01T04:00:00Z | 2025 | 10 | 2025-10-01T04:00:00Z | 2025-11-01T11:32:11Z | 1 | 0 | 09000064b8febf00 | ||
| DOT-OST-2008-0234-0341 | DOT | None DOT-OST-2008-0234 | Ex Parte Correspondence to Deutsche Lufthansa AG | Other | Correspondence | 2025-09-23T04:00:00Z | 2025 | 9 | 2025-09-23T04:00:00Z | 2025-09-23T16:20:44Z | 1 | 0 | 09000064b8fd3cb3 | ||
| DOT-OST-2008-0234-0340 | DOT | None DOT-OST-2008-0234 | Steven P. Endres (Notice of Results of Auction of Airport Schedule for Summer 2026) | Other | Correspondence | 2025-09-10T04:00:00Z | 2025 | 9 | 2025-09-10T04:00:00Z | 2025-09-11T00:34:17Z | 1 | 0 | 09000064b8f68c65 | ||
| DOT-OST-2008-0234-0339 | DOT | None DOT-OST-2008-0234 | Steven P. Endres (Auction of Airport Schedule for Summer 2026) | Other | Correspondence | 2025-09-03T04:00:00Z | 2025 | 9 | 2025-09-03T04:00:00Z | 2025-09-03T16:30:20Z | 1 | 0 | 09000064b8f36e67 | ||
| DOT-OST-2008-0234-0338 | DOT | None DOT-OST-2008-0234 | United Airlines, Inc. - Notification of Cessation of Immunized Alliance with Scandinavia Airlines System | Other | Correspondence | 2025-07-09T04:00:00Z | 2025 | 7 | 2025-07-09T04:00:00Z | 2025-07-09T19:49:58Z | 1 | 0 | 09000064b8e5ef24 |
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;