documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where docket_id = "DOT-OST-2002-12555" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0236 | DOT | None DOT-OST-2002-12555 | Dynamic International Airways, LLC | Other | Correspondence | 2015-12-31T05:00:00Z | 2015 | 12 | 2015-12-31T05:00:00Z | 2024-11-11T21:18:09Z | 1 | 0 | 0900006481dddb2c | ||
| DOT-OST-2002-12555-0235 | DOT | None DOT-OST-2002-12555 | Hong Kong Airlines Limited | Other | 2015-11-17T05:00:00Z | 2015 | 11 | 2026-01-07T02:44:49Z | 0 | 1 | 0900006481d4f9a0 | ||||
| DOT-OST-2002-12555-0234 | DOT | None DOT-OST-2002-12555 | Pentastar Aviation Charter, Inc. | Other | Correspondence | 2015-10-30T04:00:00Z | 2015 | 10 | 2015-10-30T04:00:00Z | 2024-11-12T05:49:32Z | 1 | 0 | 0900006481cfdaca | ||
| DOT-OST-2002-12555-0233 | DOT | None DOT-OST-2002-12555 | Hawaii Island Air, Inc. | Other | Correspondence | 2015-10-15T04:00:00Z | 2015 | 10 | 2015-10-15T04:00:00Z | 2015-10-15T20:15:47Z | 0 | 0 | 0900006481cccca9 | ||
| DOT-OST-2002-12555-0232 | DOT | None DOT-OST-2002-12555 | National Air Cargo Group, Inc. d/b/a National Airlines | Other | Correspondence | 2015-10-06T04:00:00Z | 2015 | 10 | 2015-10-06T04:00:00Z | 2015-10-06T12:31:02Z | 0 | 0 | 0900006481caff97 | ||
| DOT-OST-2002-12555-0231 | DOT | None DOT-OST-2002-12555 | JetBlue Airways Corporation - Designation of Agent Form | Other | Correspondence | 2015-05-01T04:00:00Z | 2015 | 5 | 2015-05-01T04:00:00Z | 2015-10-06T12:28:26Z | 0 | 0 | 0900006481ac3540 | ||
| DOT-OST-2002-12555-0230 | DOT | None DOT-OST-2002-12555 | Notice: Withdrawal of Agent (Florida West International Airways, Inc.) | Other | Correspondence | 2015-04-27T04:00:00Z | 2015 | 4 | 2015-04-27T04:00:00Z | 2015-04-27T13:16:10Z | 0 | 0 | 0900006481ab202d | ||
| DOT-OST-2002-12555-0229 | DOT | None DOT-OST-2002-12555 | USA Jet Airlines | Other | Correspondence | 2015-03-09T04:00:00Z | 2015 | 3 | 2015-03-09T04:00:00Z | 2015-03-09T19:49:40Z | 0 | 0 | 0900006481a24fda | ||
| DOT-OST-2002-12555-0228 | DOT | None DOT-OST-2002-12555 | Aerodynamics Incorporated | Other | Correspondence | 2015-02-04T05:00:00Z | 2015 | 2 | 2015-02-04T05:00:00Z | 2015-02-04T16:56:54Z | 0 | 0 | 09000064819e59c1 | ||
| DOT-OST-2002-12555-0227 | DOT | None DOT-OST-2002-12555 | Frontier Airlines, Inc. | Other | Correspondence | 2015-01-27T05:00:00Z | 2015 | 1 | 2015-01-27T05:00:00Z | 2024-11-11T20:55:37Z | 1 | 0 | 09000064819df8a4 | ||
| DOT-OST-2002-12555-0225 | DOT | None DOT-OST-2002-12555 | Alaska Airlines, Inc. | Other | Correspondence | 2015-01-20T05:00:00Z | 2015 | 1 | 2015-01-20T05:00:00Z | 2015-01-20T19:52:14Z | 0 | 0 | 09000064819d32fc | ||
| DOT-OST-2002-12555-0226 | DOT | None DOT-OST-2002-12555 | Horizon Air Industries, Inc. | Other | Correspondence | 2015-01-20T05:00:00Z | 2015 | 1 | 2015-01-20T05:00:00Z | 2015-01-20T20:22:10Z | 0 | 0 | 09000064819d3aba | ||
| DOT-OST-2002-12555-0224 | DOT | None DOT-OST-2002-12555 | Florida West International Airways, Inc. d/b/a FWIA | Other | Correspondence | 2015-01-08T05:00:00Z | 2015 | 1 | 2015-01-08T05:00:00Z | 2024-11-12T05:33:35Z | 1 | 0 | 09000064819ac210 |
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;