documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2002-12555" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-0246 | DOT | None DOT-OST-2002-12555 | MN Airlines, LLC dba Sun Country Airlines | Other | Correspondence | 2016-10-06T04:00:00Z | 2016 | 10 | 2016-10-06T04:00:00Z | 2016-10-06T17:45:04Z | 0 | 0 | 09000064822a0830 | ||
| DOT-OST-2002-12555-0245 | DOT | None DOT-OST-2002-12555 | Omni Air International, LLC | Other | Correspondence | 2016-10-03T04:00:00Z | 2016 | 10 | 2016-10-03T04:00:00Z | 2016-10-03T14:23:39Z | 0 | 0 | 09000064822872b5 | ||
| DOT-OST-2002-12555-0244 | DOT | None DOT-OST-2002-12555 | Iberworld Airlines, S.A. - Withdrawal of Designation of Agent | Other | Withdrawal | 2016-07-19T04:00:00Z | 2016 | 7 | 2016-07-19T04:00:00Z | 2024-11-12T06:09:56Z | 1 | 0 | 09000064820c465f | ||
| DOT-OST-2002-12555-0243 | DOT | None DOT-OST-2002-12555 | CityWings, Inc. d/b/a Seaflight | Other | Correspondence | 2016-06-14T04:00:00Z | 2016 | 6 | 2016-06-14T04:00:00Z | 2024-11-07T23:44:02Z | 1 | 0 | 0900006482033a9e | ||
| DOT-OST-2002-12555-0242 | DOT | None DOT-OST-2002-12555 | Frontier Airlines, Inc. | Other | Correspondence | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-17T04:00:00Z | 2024-11-11T21:27:56Z | 1 | 0 | 0900006481fd47e7 | ||
| DOT-OST-2002-12555-0241 | DOT | None DOT-OST-2002-12555 | Hong Kong Express Airways Limited | Other | 2016-03-03T00:00:00Z | 2016 | 3 | 2024-11-12T06:01:48Z | 0 | 1 | 0900006481e9e97e | ||||
| DOT-OST-2002-12555-0240 | DOT | None DOT-OST-2002-12555 | ATX Air Services, LLC | Other | Correspondence | 2016-02-23T05:00:00Z | 2016 | 2 | 2016-02-23T05:00:00Z | 2024-11-12T05:57:14Z | 1 | 0 | 0900006481e79978 | ||
| DOT-OST-2002-12555-0239 | DOT | None DOT-OST-2002-12555 | Virgin America Inc. | Other | Correspondence | 2016-02-18T05:00:00Z | 2016 | 2 | 2016-02-18T05:00:00Z | 2024-11-12T05:52:45Z | 1 | 0 | 0900006481e767ec | ||
| DOT-OST-2002-12555-0238 | DOT | None DOT-OST-2002-12555 | Miami Air International, Inc. | Other | Correspondence | 2016-01-29T05:00:00Z | 2016 | 1 | 2016-01-29T05:00:00Z | 2024-11-12T05:58:47Z | 1 | 0 | 0900006481e35869 | ||
| DOT-OST-2002-12555-0237 | DOT | None DOT-OST-2002-12555 | Dynamic International Airways, LLC | Other | Correspondence | 2016-01-07T05:00:00Z | 2016 | 1 | 2016-01-07T05:00:00Z | 2024-11-11T21:20:46Z | 1 | 0 | 0900006481df4e1c |
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;