documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-1996-1899" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, 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-1996-1899-0276 | DOT | 96-10-39 Order to Show Cause - Essential Air Service - Kingman and Prescott, Arizona DOT-OST-1996-1899 | Notice of Third Extension Regarding Current Administration and Enforcement of the Essential Air Service Program | Other | Decision | 2020-12-23T05:00:00Z | 2020 | 12 | 2020-12-23T05:00:00Z | 2024-11-12T23:26:57Z | 1 | 0 | 09000064849c4e2e | ||
| DOT-OST-1996-1899-0275 | DOT | 96-10-39 Order to Show Cause - Essential Air Service - Kingman and Prescott, Arizona DOT-OST-1996-1899 | Notice of Second Extension Regarding Current Administration and Enforcement of the Essential Air Service Program | Other | Decision | 2020-09-22T04:00:00Z | 2020 | 9 | 2020-09-22T04:00:00Z | 2024-11-12T23:25:10Z | 1 | 0 | 090000648486ea39 | ||
| DOT-OST-1996-1899-0274 | DOT | 96-10-39 Order to Show Cause - Essential Air Service - Kingman and Prescott, Arizona DOT-OST-1996-1899 | 2020-7-2 Order Selecting Air Carrier | Other | Order | 2020-07-01T04:00:00Z | 2020 | 7 | 2020-07-01T04:00:00Z | 2024-11-06T23:37:02Z | 1 | 0 | 090000648471f024 | ||
| DOT-OST-1996-1899-0273 | DOT | 96-10-39 Order to Show Cause - Essential Air Service - Kingman and Prescott, Arizona DOT-OST-1996-1899 | Notice of Extension Regarding Current Administration and Enforcement of the Essential Air Service Program | Other | Decision | 2020-06-05T04:00:00Z | 2020 | 6 | 2020-06-05T04:00:00Z | 2024-11-12T23:20:09Z | 1 | 0 | 09000064846d06a8 | ||
| DOT-OST-1996-1899-0272 | DOT | 96-10-39 Order to Show Cause - Essential Air Service - Kingman and Prescott, Arizona DOT-OST-1996-1899 | Notice Regarding Current Administration and Enforcement of the Essential Air Service Program | Other | Decision | 2020-04-29T04:00:00Z | 2020 | 4 | 2020-04-29T04:00:00Z | 2024-11-06T23:35:24Z | 1 | 0 | 090000648450bf10 | ||
| DOT-OST-1996-1899-0271 | DOT | 96-10-39 Order to Show Cause - Essential Air Service - Kingman and Prescott, Arizona DOT-OST-1996-1899 | City of Prescott, Arizona (Comments) | Other | Correspondence | 2020-02-11T05:00:00Z | 2020 | 2 | 2020-02-11T05:00:00Z | 2024-11-06T23:32:02Z | 1 | 0 | 090000648434eebd | ||
| DOT-OST-1996-1899-0270 | DOT | 96-10-39 Order to Show Cause - Essential Air Service - Kingman and Prescott, Arizona DOT-OST-1996-1899 | Request for Community Comments | Other | Request | 2020-01-31T05:00:00Z | 2020 | 1 | 2020-01-31T05:00:00Z | 2024-11-12T23:16:43Z | 1 | 0 | 0900006484317b04 | ||
| DOT-OST-1996-1899-0269 | DOT | 96-10-39 Order to Show Cause - Essential Air Service - Kingman and Prescott, Arizona DOT-OST-1996-1899 | SkyWest Airlines (Proposal) | Other | Proposal(s) | 2020-01-31T05:00:00Z | 2020 | 1 | 2020-01-31T05:00:00Z | 2024-11-12T23:16:43Z | 1 | 0 | 09000064843177ea |
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;