documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-2015-0064" 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-0064-0008 | DOT | None DOT-OST-2015-0064 | 2017-9-8 Order Revoking Commuter Authority | Other | Order | 2017-09-07T04:00:00Z | 2017 | 9 | 2017-09-07T04:00:00Z | 2024-11-07T01:10:43Z | 1 | 0 | 0900006482b15b9a | ||
| DOT-OST-2015-0064-0007 | DOT | None DOT-OST-2015-0064 | Applications for Commuter Authority: Altius Aviation, LLC | Notice | Notice of Intent | 2015-10-06T04:00:00Z | 2015 | 10 | 2015-10-06T04:00:00Z | 2024-11-12T05:49:03Z | 2015-25308 | 1 | 0 | 0900006481cb3198 | |
| DOT-OST-2015-0064-0006 | DOT | None DOT-OST-2015-0064 | 2015-10-4 Final Order | Other | Order | 2015-10-06T04:00:00Z | 2015 | 10 | 2015-10-06T04:00:00Z | 2024-11-07T23:30:12Z | 1 | 0 | 0900006481cb48a3 | ||
| DOT-OST-2015-0064-0005 | DOT | None DOT-OST-2015-0064 | 2015-9-15 Order to Show Cause Proposing Issuance of Commuter Air Carrier Authority | Other | Order | 2015-09-21T04:00:00Z | 2015 | 9 | 2015-09-21T04:00:00Z | 2015-09-21T20:50:35Z | 0 | 0 | 0900006481c89cad | ||
| DOT-OST-2015-0064-0003 | DOT | None DOT-OST-2015-0064 | Letter Regarding Confidential Treatment and a Request for Additional Information | Other | Letter(s) | 2015-05-19T04:00:00Z | 2015 | 5 | 2015-05-19T04:00:00Z | 2024-11-07T23:21:34Z | 1 | 0 | 0900006481ae3e3b | ||
| DOT-OST-2015-0064-0004 | DOT | None DOT-OST-2015-0064 | Altius Aviation - Response to Request for Addition Information | Other | Response(s) | 2015-05-19T04:00:00Z | 2015 | 5 | 2015-05-19T04:00:00Z | 2024-11-07T23:21:38Z | 1 | 0 | 0900006481ae5298 | ||
| DOT-OST-2015-0064-0002 | DOT | None DOT-OST-2015-0064 | Motion of Altius Aviation, LLC to Withhold Information From Public Disclosure | Other | Motion | 2015-03-27T04:00:00Z | 2015 | 3 | 2015-03-27T04:00:00Z | 2015-03-28T03:02:46Z | 0 | 0 | 0900006481a6ce6f | ||
| DOT-OST-2015-0064-0001 | DOT | None DOT-OST-2015-0064 | Application of Altius Aviation, LLC | Other | Application-SubPartB | 2015-03-25T04:00:00Z | 2015 | 3 | 2015-03-25T04:00:00Z | 2024-11-07T23:16:43Z | 1 | 0 | 0900006481a66c32 |
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;