documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-2014-0152" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, comment_start_date, last_modified, open_for_comment, 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-2014-0152-0008 | DOT | None DOT-OST-2014-0152 | Applications: Certificates of Public Convenience and Necessity and Foreign Air Carrier Permits | Notice | Notice of Intent | 2014-09-25T04:00:00Z | 2014 | 9 | 2014-09-25T04:00:00Z | 2024-11-11T20:53:56Z | 2014-22146 | 1 | 0 | 090000648188f9ae | |
| DOT-OST-2014-0152-0006 | DOT | None DOT-OST-2014-0152 | Supplemental Exhibit C | Supporting & Related Material | Supplement | 2014-09-17T04:00:00Z | 2014 | 9 | 2024-11-11T20:53:23Z | 0 | 0 | 0900006481877b50 | |||
| DOT-OST-2014-0152-0007 | DOT | None DOT-OST-2014-0152 | 2014-9-11 Order Issuing Certificate | Other | Order | 2014-09-17T04:00:00Z | 2014 | 9 | 2014-09-17T04:00:00Z | 2024-11-07T23:09:23Z | 1 | 0 | 090000648187a183 | ||
| DOT-OST-2014-0152-0004 | DOT | None DOT-OST-2014-0152 | Caribbean Sun Airlines, Inc. d/b/a World Atlantic Airlines, Inc. (Polling Letter) | Other | Letter(s) | 2014-09-16T04:00:00Z | 2014 | 9 | 2014-09-16T04:00:00Z | 2024-11-07T23:11:14Z | 1 | 0 | 0900006481872f0d | ||
| DOT-OST-2014-0152-0005 | DOT | None DOT-OST-2014-0152 | Notice Shortening Answer Period of Caribbean Sun Airlines, Inc. d/b/a World Atlantic Airlines for a Certificate of Public Convenience and Necessity | Other | Decision | 2014-09-16T04:00:00Z | 2014 | 9 | 2014-09-16T04:00:00Z | 2024-11-11T20:54:37Z | 1 | 0 | 0900006481874e51 | ||
| DOT-OST-2014-0152-0002 | DOT | None DOT-OST-2014-0152 | Motion and Supplement of Caribbean Sun Airlines, Inc. d/b/a World Atlantic Airlines | Other | Motion | 2014-09-15T04:00:00Z | 2014 | 9 | 2014-09-15T04:00:00Z | 2024-11-11T20:53:39Z | 1 | 0 | 090000648186ea84 | ||
| DOT-OST-2014-0152-0003 | DOT | None DOT-OST-2014-0152 | Motion of Caribbean Sun Airlines, Inc. d/b/a World Atlantic Airlines for Confidential Treatment | Other | Motion | 2014-09-15T04:00:00Z | 2014 | 9 | 2014-09-15T04:00:00Z | 2024-11-11T20:53:39Z | 1 | 0 | 090000648186ea82 | ||
| DOT-OST-2014-0152-0001 | DOT | None DOT-OST-2014-0152 | Application of Caribbean Sun Airlines, Inc. d/b/a World Atlantic Airlines for a Certificate of Public Convenience and Necessity | Other | Application-SubPartB | 2014-09-03T04:00:00Z | 2014 | 9 | 2014-09-03T04:00:00Z | 2024-11-11T20:53:18Z | 1 | 0 | 09000064818563ce |
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;