documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-2016-0126" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2016-0126-0008 | DOT | None DOT-OST-2016-0126 | 2017-5-1 Order Confirming Oral Action and Issuing Effective Certificate | Other | Order | 2017-05-01T04:00:00Z | 2017 | 5 | 2017-05-01T04:00:00Z | 2024-11-07T00:57:36Z | 1 | 0 | 09000064825878f1 | ||
| DOT-OST-2016-0126-0007 | DOT | None DOT-OST-2016-0126 | 2017-1-14 Final Order Issuing Interstate Certificate | Other | Order | 2017-01-13T05:00:00Z | 2017 | 1 | 2017-01-13T05:00:00Z | 2024-11-11T21:35:09Z | 1 | 0 | 0900006482476fd8 | ||
| DOT-OST-2016-0126-0006 | DOT | None DOT-OST-2016-0126 | Applications for Certificate Authority: Paklook Air, Inc., D/B/A Airlift Alaska | Notice | Notice of Intent | 2017-01-05T05:00:00Z | 2017 | 1 | 2017-01-05T05:00:00Z | 2017-01-05T13:58:08Z | 2016-31982 | 0 | 0 | 090000648244bf57 | |
| DOT-OST-2016-0126-0005 | DOT | None DOT-OST-2016-0126 | 2016-12-22 Order to Show Cause Proposing Issuance of Certificate Authority | Other | Order | 2016-12-29T05:00:00Z | 2016 | 12 | 2016-12-29T05:00:00Z | 2024-11-07T23:52:06Z | 1 | 0 | 090000648243e062 | ||
| DOT-OST-2016-0126-0004 | DOT | None DOT-OST-2016-0126 | Paklook Air, Inc. d/b/a Airlift Alaska - Response to Request for Additional Information | Other | Response(s) | 2016-12-09T05:00:00Z | 2016 | 12 | 2016-12-09T05:00:00Z | 2024-11-12T06:15:50Z | 1 | 0 | 09000064823efda3 | ||
| DOT-OST-2016-0126-0003 | DOT | None DOT-OST-2016-0126 | Request for Additional Information (September 13, 2016) | Other | Request | 2016-11-15T05:00:00Z | 2016 | 11 | 2016-11-15T05:00:00Z | 2024-11-12T06:17:59Z | 1 | 0 | 09000064823952a9 | ||
| DOT-OST-2016-0126-0002 | DOT | None DOT-OST-2016-0126 | Paklook Air, Inc. d/b/a Airlift Alaska - Additional Information | Other | Additional Information | 2016-11-02T04:00:00Z | 2016 | 11 | 2016-11-02T04:00:00Z | 2024-11-07T23:50:41Z | 1 | 0 | 0900006482369c14 | ||
| DOT-OST-2016-0126-0001 | DOT | None DOT-OST-2016-0126 | Application of Paklook Air, Inc. d/b/a Airlift Alaska for a Certificate of Public Convenience and Necessity | Other | Application-SubPartB | 2016-07-19T04:00:00Z | 2016 | 7 | 2016-07-19T04:00:00Z | 2024-11-12T06:08:25Z | 1 | 0 | 09000064820c3779 |
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;