documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "DOT-OST-2015-0043" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2015-0043-0014 | DOT | None DOT-OST-2015-0043 | 21 Air, LLC - Additional Information | Other | Additional Information | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-13T05:00:00Z | 2024-11-07T23:52:22Z | 1 | 0 | 09000064823fd551 | ||
| DOT-OST-2015-0043-0015 | DOT | None DOT-OST-2015-0043 | 21 Air, LLC - Response to Final Order 2016-7-18 | Other | Response(s) | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-13T05:00:00Z | 2024-11-12T06:17:52Z | 1 | 0 | 09000064823fd461 | ||
| DOT-OST-2015-0043-0013 | DOT | None DOT-OST-2015-0043 | 2016-9-22 Final Order Issuing Foreign Certificate | Other | Order | 2016-09-30T04:00:00Z | 2016 | 9 | 2016-09-30T04:00:00Z | 2016-09-30T14:35:59Z | 0 | 0 | 0900006482285a89 | ||
| DOT-OST-2015-0043-0012 | DOT | None DOT-OST-2015-0043 | 2016-7-18 Final Order Issuing Interstate Certificate | Other | Order | 2016-07-26T04:00:00Z | 2016 | 7 | 2016-07-26T04:00:00Z | 2024-11-12T06:13:30Z | 1 | 0 | 0900006482124cad | ||
| DOT-OST-2015-0043-0011 | DOT | None DOT-OST-2015-0043 | Applications for Certificate Authority: 21 Air LLC | Notice | Notice of Intent | 2016-07-15T04:00:00Z | 2016 | 7 | 2016-07-15T04:00:00Z | 2024-11-07T23:46:11Z | 2016-16753 | 1 | 0 | 09000064820b3fba | |
| DOT-OST-2015-0043-0010 | DOT | None DOT-OST-2015-0043 | 2016-7-5 Order to Show Cause Proposing Issuance of Certificate Authority | Other | Order | 2016-07-08T04:00:00Z | 2016 | 7 | 2016-07-08T04:00:00Z | 2024-11-12T06:07:53Z | 1 | 0 | 09000064820985df | ||
| DOT-OST-2015-0043-0009 | DOT | None DOT-OST-2015-0043 | Request for Additional Information | Other | Request | 2016-06-21T04:00:00Z | 2016 | 6 | 2016-06-21T04:00:00Z | 2024-11-07T23:45:41Z | 1 | 0 | 09000064820515fd | ||
| DOT-OST-2015-0043-0008 | DOT | None DOT-OST-2015-0043 | 21 Air, LLC - Response to Request for Additional Information (April 27, 2016) | Other | Response(s) | 2016-05-05T04:00:00Z | 2016 | 5 | 2016-05-05T04:00:00Z | 2024-11-07T23:41:29Z | 1 | 0 | 0900006481fae5ef | ||
| DOT-OST-2015-0043-0007 | DOT | None DOT-OST-2015-0043 | Request for Additional Information (March 25, 2016) | Other | Request | 2016-05-04T04:00:00Z | 2016 | 5 | 2016-05-04T04:00:00Z | 2024-11-07T23:41:11Z | 1 | 0 | 0900006481fa89b8 | ||
| DOT-OST-2015-0043-0006 | DOT | None DOT-OST-2015-0043 | Request for Additional Information (April 27, 2016) | Other | Request | 2016-04-29T04:00:00Z | 2016 | 4 | 2016-04-29T04:00:00Z | 2024-11-07T23:41:56Z | 1 | 0 | 0900006481f9a8d8 | ||
| DOT-OST-2015-0043-0005 | DOT | None DOT-OST-2015-0043 | 21 Air, LLC - Reply to Request for Additional Information (March 25, 2016) | Other | Reply | 2016-04-19T04:00:00Z | 2016 | 4 | 2016-04-19T04:00:00Z | 2024-11-11T21:28:10Z | 1 | 0 | 0900006481f73ecf |
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;