documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "DOT-OST-1998-20" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-1998-20-1081 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice - Japan Charter Authorizations (January 1 - December 31, 2026) | Other | Decision | 2025-12-04T05:00:00Z | 2025 | 12 | 2025-12-04T05:00:00Z | 2025-12-04T23:40:46Z | 0 | 0 | 09000064b90af2fb | ||
| DOT-OST-1998-20-1080 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice of Registration of Trade Name (Hawaiian Airlines and Hawaiian) | Other | Decision | 2025-10-24T04:00:00Z | 2025 | 10 | 2025-10-24T04:00:00Z | 2025-10-24T20:05:02Z | 0 | 0 | 09000064b904fe43 | ||
| DOT-OST-1998-20-1079 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice of Consistency (Western Global Airlines) | Other | Decision | 2025-09-23T04:00:00Z | 2025 | 9 | 2025-09-23T04:00:00Z | 2025-09-23T17:13:44Z | 0 | 0 | 09000064b8fd5d39 | ||
| DOT-OST-1998-20-1078 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice of Consistency (Western Global Airlines) | Other | Decision | 2025-09-19T04:00:00Z | 2025 | 9 | 2025-09-19T04:00:00Z | 2025-09-20T00:30:27Z | 0 | 0 | 09000064b8fc5cba | ||
| DOT-OST-1998-20-1077 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice of Consistency (Wester Global Airlines, Inc.) | Other | Decision | 2025-08-15T04:00:00Z | 2025 | 8 | 2025-08-15T04:00:00Z | 2025-08-15T22:46:26Z | 0 | 0 | 09000064b8f01c45 | ||
| DOT-OST-1998-20-1076 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | 2024/2025 U.S.-China Charter Authorizations (August 1, 2025 through July 31, 2026) | Other | Decision | 2025-07-30T04:00:00Z | 2025 | 7 | 2025-07-30T04:00:00Z | 2025-07-30T16:23:50Z | 0 | 0 | 09000064b8ebad58 | ||
| DOT-OST-1998-20-1075 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice of Consistency (Scott Aviation LLC dba Silver Air Private Jets) | Other | Decision | 2025-04-16T04:00:00Z | 2025 | 4 | 2025-04-16T04:00:00Z | 2025-04-16T13:18:55Z | 0 | 0 | 0900006486a95d7e |
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;