documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2015-0095" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-0095-0035 | DOT | None DOT-OST-2015-0095 | Ex Parte Correspondence to Honorable Claire McCaskill | Other | Correspondence | 2016-03-14T04:00:00Z | 2016 | 3 | 2016-03-14T04:00:00Z | 2024-11-12T05:52:15Z | 1 | 0 | 0900006481ebd95f | ||
| DOT-OST-2015-0095-0036 | DOT | None DOT-OST-2015-0095 | Ex Parte Correspondence to Honorable Billy Long | Other | Correspondence | 2016-03-14T04:00:00Z | 2016 | 3 | 2016-03-14T04:00:00Z | 2024-11-12T05:52:17Z | 1 | 0 | 0900006481ebd961 | ||
| DOT-OST-2015-0095-0034 | DOT | None DOT-OST-2015-0095 | 2016-2-10 Final Order Issuing Interstate Certificate | Other | Order | 2016-02-16T05:00:00Z | 2016 | 2 | 2016-02-16T05:00:00Z | 2024-11-12T05:58:36Z | 1 | 0 | 0900006481e6d463 | ||
| DOT-OST-2015-0095-0031 | DOT | None DOT-OST-2015-0095 | Elite Airways LLC - Additional Information | Other | Additional Information | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-12T05:00:00Z | 2024-11-12T05:52:59Z | 1 | 0 | 0900006481e6720e | ||
| DOT-OST-2015-0095-0033 | DOT | None DOT-OST-2015-0095 | Elite Airways LLC - Additional Information | Other | Additional Information | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-12T05:00:00Z | 2024-11-12T05:58:28Z | 1 | 0 | 0900006481e67c2b | ||
| DOT-OST-2015-0095-0030 | DOT | None DOT-OST-2015-0095 | Elite Airways LLC - Additional Information | Other | Additional Information | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-12T05:00:00Z | 2024-11-12T05:57:40Z | 1 | 0 | 0900006481e67009 | ||
| DOT-OST-2015-0095-0032 | DOT | None DOT-OST-2015-0095 | Elite Airways LLC - Additional Information | Other | Additional Information | 2016-02-12T05:00:00Z | 2016 | 2 | 2016-02-12T05:00:00Z | 2024-11-12T06:02:13Z | 1 | 0 | 0900006481e676a4 | ||
| DOT-OST-2015-0095-0029 | DOT | None DOT-OST-2015-0095 | Elite Airways (Waiver Request) | Other | Correspondence | 2016-02-11T05:00:00Z | 2016 | 2 | 2016-02-11T05:00:00Z | 2024-11-12T05:53:18Z | 1 | 0 | 0900006481e66c23 | ||
| DOT-OST-2015-0095-0028 | DOT | None DOT-OST-2015-0095 | Honorable Claire McCaskill | Other | Letter(s) in Support | 2016-02-05T05:00:00Z | 2016 | 2 | 2016-02-05T05:00:00Z | 2016-02-05T18:40:15Z | 0 | 0 | 0900006481e53d76 | ||
| DOT-OST-2015-0095-0027 | DOT | None DOT-OST-2015-0095 | Application for Certificate Authority: Elite Airways, LLC | Notice | Notice of Intent | 2016-02-04T05:00:00Z | 2016 | 2 | 2016-02-04T05:00:00Z | 2024-11-12T05:57:32Z | 2016-02106 | 1 | 0 | 0900006481e4ebb7 | |
| DOT-OST-2015-0095-0026 | DOT | None DOT-OST-2015-0095 | 2016-1-12 Order to Show Cause | Other | Order | 2016-01-29T05:00:00Z | 2016 | 1 | 2016-01-29T05:00:00Z | 2024-11-12T06:04:52Z | 1 | 0 | 0900006481e3aab6 | ||
| DOT-OST-2015-0095-0025 | DOT | None DOT-OST-2015-0095 | Honorable Billy Long | Other | Letter(s) in Support | 2016-01-29T05:00:00Z | 2016 | 1 | 2016-01-29T05:00:00Z | 2016-01-29T13:41:11Z | 0 | 0 | 0900006481e35fec |
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;