documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "DOT-OST-2014-0199" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2014-0199-0007 | DOT | None DOT-OST-2014-0199 | Application of Republic Airways Inc. for Renewal of an Exemption Authority | Other | Application-Other | 2020-06-12T04:00:00Z | 2020 | 6 | 2020-06-12T04:00:00Z | 2024-11-06T23:38:07Z | 1 | 0 | 09000064846ebfdf | ||
| DOT-OST-2014-0199-0006 | DOT | None DOT-OST-2014-0199 | Notice of Action Taken re: Republic Airline Inc. | Other | Decision | 2018-09-25T04:00:00Z | 2018 | 9 | 2018-09-25T04:00:00Z | 2024-11-12T06:19:07Z | 1 | 0 | 09000064837726fa | ||
| DOT-OST-2014-0199-0005 | DOT | None DOT-OST-2014-0199 | Application of Republic Airline Inc. for Renewal of Exemption Authority | Other | Application-Other | 2018-08-31T04:00:00Z | 2018 | 8 | 2018-08-31T04:00:00Z | 2024-11-07T01:36:56Z | 1 | 0 | 0900006483689805 | ||
| DOT-OST-2014-0199-0004 | DOT | None DOT-OST-2014-0199 | Notice of Action Taken re: Republic Airline Inc. | Other | Decision | 2016-11-02T04:00:00Z | 2016 | 11 | 2016-11-02T04:00:00Z | 2024-11-07T23:49:56Z | 1 | 0 | 090000648236b93c | ||
| DOT-OST-2014-0199-0003 | DOT | None DOT-OST-2014-0199 | Republic Airline - Application for Renewal of Exemption | Other | Application-Other | 2016-10-11T04:00:00Z | 2016 | 10 | 2016-10-11T04:00:00Z | 2024-11-07T23:50:47Z | 1 | 0 | 09000064822d4f27 | ||
| DOT-OST-2014-0199-0002 | DOT | None DOT-OST-2014-0199 | Notice of Action Taken re: Republic Airline Inc. | Other | Decision | 2014-12-31T05:00:00Z | 2014 | 12 | 2014-12-31T05:00:00Z | 2024-11-12T05:34:04Z | 1 | 0 | 090000648199c6e4 | ||
| DOT-OST-2014-0199-0001 | DOT | None DOT-OST-2014-0199 | Application of Republic Airline Inc. for Exemption Authority | Other | Application-Other | 2014-11-19T05:00:00Z | 2014 | 11 | 2014-11-19T05:00:00Z | 2024-11-12T05:31:47Z | 1 | 0 | 090000648193835c |
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;