documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2016-0057" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2016-0057-0009 | DOT | None DOT-OST-2016-0057 | 2016-11-15 Order Confirming Oral Action and Issuing Effective Commuter Authorization | Other | Order | 2016-11-17T05:00:00Z | 2016 | 11 | 2016-11-17T05:00:00Z | 2024-11-07T23:50:40Z | 1 | 0 | 090000648239ea50 | ||
| DOT-OST-2016-0057-0008 | DOT | None DOT-OST-2016-0057 | Response to Final Order | Other | Response(s) | 2016-08-18T04:00:00Z | 2016 | 8 | 2016-08-18T04:00:00Z | 2024-11-12T06:13:33Z | 1 | 0 | 090000648217f12a | ||
| DOT-OST-2016-0057-0007 | DOT | None DOT-OST-2016-0057 | 2016-8-19 Final Order | Other | Order | 2016-08-17T04:00:00Z | 2016 | 8 | 2016-08-17T04:00:00Z | 2024-11-12T06:14:05Z | 1 | 0 | 090000648217d49c | ||
| DOT-OST-2016-0057-0006 | DOT | None DOT-OST-2016-0057 | Commuter Authority Applications: Trans Northern Airways LLC | Notice | Notice of Action Taken | 2016-08-08T04:00:00Z | 2016 | 8 | 2016-08-08T04:00:00Z | 2024-11-12T06:13:07Z | 2016-18728 | 1 | 0 | 090000648215c423 | |
| DOT-OST-2016-0057-0005 | DOT | None DOT-OST-2016-0057 | 2016-8-5 Order to Show Cause Proposing Issuance of Commuter Air Carrier Authority | Other | Order | 2016-08-02T04:00:00Z | 2016 | 8 | 2016-08-02T04:00:00Z | 2024-11-12T06:12:46Z | 1 | 0 | 090000648214d1b7 | ||
| DOT-OST-2016-0057-0004 | DOT | None DOT-OST-2016-0057 | Trans Northern Airways, LLC - Additional Information | Other | Additional Information | 2016-06-02T04:00:00Z | 2016 | 6 | 2016-06-02T04:00:00Z | 2024-11-12T06:07:22Z | 1 | 0 | 09000064820056d9 | ||
| DOT-OST-2016-0057-0003 | DOT | None DOT-OST-2016-0057 | Supplement No. 1 to Application of Trans Northern Airways, LLC d/b/a Air Unlimited Charter Services for a Commuter Air Carrier Authorization | Other | Supplement (SUP) | 2016-05-12T04:00:00Z | 2016 | 5 | 2016-05-12T04:00:00Z | 2024-11-12T06:06:16Z | 1 | 0 | 0900006481fca1dd | ||
| DOT-OST-2016-0057-0002 | DOT | None DOT-OST-2016-0057 | Request for Additional Information | Other | Request | 2016-04-28T04:00:00Z | 2016 | 4 | 2016-04-28T04:00:00Z | 2024-11-07T23:46:26Z | 1 | 0 | 0900006481f91e4b | ||
| DOT-OST-2016-0057-0001 | DOT | None DOT-OST-2016-0057 | Application of Trans Northern Airways, LLC d/b/a Air Unlimited Charter Services for a Commuter Air Carrier Authorization | Other | Application-SubPartB | 2016-03-24T04:00:00Z | 2016 | 3 | 2016-03-24T04:00:00Z | 2024-11-12T06:04:46Z | 1 | 0 | 0900006481edccb6 |
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;