documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2002-12555" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, open_for_comment, withdrawn, 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-2002-12555-0309 | DOT | None DOT-OST-2002-12555 | KLM Royal Dutch Airlines | Other | 2025-11-19T05:00:00Z | 2025 | 11 | 2025-11-20T02:01:38Z | 0 | 1 | 09000064b90897f9 | ||||
| DOT-OST-2002-12555-0306 | DOT | None DOT-OST-2002-12555 | Omni Air International, LLC | Other | Correspondence | 2025-10-23T04:00:00Z | 2025 | 10 | 2025-10-23T04:00:00Z | 2025-10-23T20:02:28Z | 1 | 0 | 09000064b904c433 | ||
| DOT-OST-2002-12555-0305 | DOT | None DOT-OST-2002-12555 | ABX Air, Inc. | Other | Correspondence | 2025-10-23T04:00:00Z | 2025 | 10 | 2025-10-23T04:00:00Z | 2025-10-23T20:01:27Z | 1 | 0 | 09000064b904c41f | ||
| DOT-OST-2002-12555-0307 | DOT | None DOT-OST-2002-12555 | Air Transport International, Inc. | Other | Correspondence | 2025-10-23T04:00:00Z | 2025 | 10 | 2025-10-23T04:00:00Z | 2025-10-23T20:05:46Z | 1 | 0 | 09000064b904c43c | ||
| DOT-OST-2002-12555-0304 | DOT | None DOT-OST-2002-12555 | Maritime Helicopters, Inc. | Other | Correspondence | 2025-08-18T04:00:00Z | 2025 | 8 | 2025-08-18T04:00:00Z | 2025-09-09T09:00:22Z | 1 | 0 | 09000064b8f0563d | ||
| DOT-OST-2002-12555-0303 | DOT | None DOT-OST-2002-12555 | Paklook Air Inc. | Other | Correspondence | 2025-05-05T04:00:00Z | 2025 | 5 | 2025-05-05T04:00:00Z | 2025-05-21T20:31:53Z | 1 | 0 | 09000064b8cfbfd4 | ||
| DOT-OST-2002-12555-0302 | DOT | None DOT-OST-2002-12555 | Vertigo | Other | Correspondence | 2025-04-30T04:00:00Z | 2025 | 4 | 2025-04-30T04:00:00Z | 2025-04-30T16:35:44Z | 1 | 0 | 09000064b8ce52ee | ||
| DOT-OST-2002-12555-0301 | DOT | None DOT-OST-2002-12555 | Polar Air Cargo Worldwide, Inc | Other | Correspondence | 2025-03-06T05:00:00Z | 2025 | 3 | 2025-03-06T05:00:00Z | 2025-03-11T14:05:45Z | 1 | 0 | 09000064869b5202 | ||
| DOT-OST-2002-12555-0300 | DOT | None DOT-OST-2002-12555 | Grand Canyon Airlines, Inc. and Papillon Airways, Inc. | Other | Correspondence | 2025-02-19T05:00:00Z | 2025 | 2 | 2025-02-19T05:00:00Z | 2025-02-19T19:09:26Z | 1 | 0 | 0900006486972be0 |
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;