documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-1998-20" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-1074 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice - Japan Charter Authorizations (January 1 - December 31, 2025) | Other | Decision | 2024-12-03T05:00:00Z | 2024 | 12 | 2024-12-03T05:00:00Z | 2024-12-03T19:07:54Z | 0 | 0 | 0900006486847932 | ||
| DOT-OST-1998-20-1073 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice of Registration of Trade Name (Lāna’i Air) | Other | Decision | 2024-10-09T04:00:00Z | 2024 | 10 | 2024-10-09T04:00:00Z | 2024-10-09T19:00:16Z | 0 | 0 | 09000064867bccac | ||
| DOT-OST-1998-20-1072 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice of Registration of Trade Name (Denver Air Connection) | Other | Decision | 2024-10-02T04:00:00Z | 2024 | 10 | 2024-10-02T04:00:00Z | 2024-10-02T20:20:50Z | 0 | 0 | 09000064867a7d4f | ||
| DOT-OST-1998-20-1071 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice of Consistency (National Air Cargo, Inc. dba National Airlines) | Other | Decision | 2024-08-22T04:00:00Z | 2024 | 8 | 2024-08-22T04:00:00Z | 2024-08-22T16:32:29Z | 0 | 0 | 090000648665def7 | ||
| DOT-OST-1998-20-1070 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | 2024/2025 U.S.-China Charter Authorizations (August 1, 2024 through July 31, 2025) | Other | Decision | 2024-07-16T04:00:00Z | 2024 | 7 | 2024-07-16T04:00:00Z | 2024-07-16T12:18:27Z | 0 | 0 | 09000064865f1405 | ||
| DOT-OST-1998-20-1069 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice of Registration of Trade Name (Surf Air) | Other | Decision | 2024-05-06T04:00:00Z | 2024 | 5 | 2024-05-06T04:00:00Z | 2024-05-07T12:08:39Z | 0 | 0 | 09000064865446ed | ||
| DOT-OST-1998-20-1068 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice of Registration of Trade Name (Frontera) | Other | Decision | 2024-05-06T04:00:00Z | 2024 | 5 | 2024-05-06T04:00:00Z | 2024-05-07T12:05:15Z | 0 | 0 | 090000648654373c | ||
| DOT-OST-1998-20-1067 | DOT | Notices not Associated with a Docket Number DOT-OST-1998-20 | Notice of Consistency (SC Aviation, Inc.) | Other | Decision | 2024-01-04T05:00:00Z | 2024 | 1 | 2024-01-04T05:00:00Z | 2024-01-04T21:27:32Z | 0 | 0 | 090000648637ba76 |
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;