documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2009-0305" 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-2009-0305-0166 | DOT | None DOT-OST-2009-0305 | 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:27:34Z | 1 | 0 | 09000064849c5e47 | ||
| DOT-OST-2009-0305-0165 | DOT | None DOT-OST-2009-0305 | 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-06T23:39:37Z | 1 | 0 | 090000648486f6ef | ||
| DOT-OST-2009-0305-0164 | DOT | None DOT-OST-2009-0305 | 2020-9-14 Order Setting Annual Service Levels and Total Costs Under the Alternate Essential Air Service Program | Other | Order | 2020-09-17T04:00:00Z | 2020 | 9 | 2020-09-17T04:00:00Z | 2024-11-12T23:24:53Z | 1 | 0 | 090000648486268c | ||
| DOT-OST-2009-0305-0163 | DOT | None DOT-OST-2009-0305 | Request for Community Comments (March 19, 2020) | Other | Request | 2020-07-17T04:00:00Z | 2020 | 7 | 2020-07-17T04:00:00Z | 2024-11-12T23:22:56Z | 1 | 0 | 090000648477e1dd | ||
| DOT-OST-2009-0305-0162 | DOT | None DOT-OST-2009-0305 | Tupelo Regional Airport (Application for Continued Inclusion in the Alternate Essential Air Service Program) | Other | Proposal(s) | 2020-06-17T04:00:00Z | 2020 | 6 | 2020-06-17T04:00:00Z | 2024-11-12T23:21:42Z | 1 | 0 | 09000064846f7496 | ||
| DOT-OST-2009-0305-0161 | DOT | None DOT-OST-2009-0305 | 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:21:20Z | 1 | 0 | 09000064846d0cd3 | ||
| DOT-OST-2009-0305-0160 | DOT | None DOT-OST-2009-0305 | Tupelo Airport Authority (Correspondence) | Other | Correspondence | 2020-05-13T04:00:00Z | 2020 | 5 | 2020-05-13T04:00:00Z | 2024-11-12T23:19:59Z | 1 | 0 | 09000064845eb15d | ||
| DOT-OST-2009-0305-0159 | DOT | None DOT-OST-2009-0305 | 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:36Z | 1 | 0 | 090000648450d06d | ||
| DOT-OST-2009-0305-0157 | DOT | None DOT-OST-2009-0305 | Hyannis Air Service, Inc., dba Cape Air (Proposal) | Other | Proposal(s) | 2020-03-19T04:00:00Z | 2020 | 3 | 2020-03-19T04:00:00Z | 2024-11-12T23:18:06Z | 1 | 0 | 0900006484455808 | ||
| DOT-OST-2009-0305-0158 | DOT | None DOT-OST-2009-0305 | Boutique Air (Proposal) | Other | Proposal(s) | 2020-03-19T04:00:00Z | 2020 | 3 | 2020-03-19T04:00:00Z | 2024-11-12T23:18:06Z | 1 | 0 | 0900006484455809 | ||
| DOT-OST-2009-0305-0156 | DOT | None DOT-OST-2009-0305 | Southern Airways Express LLC (Proposal) | Other | Proposal(s) | 2020-03-19T04:00:00Z | 2020 | 3 | 2020-03-19T04:00:00Z | 2024-11-12T23:18:06Z | 1 | 0 | 0900006484455806 | ||
| DOT-OST-2009-0305-0155 | DOT | None DOT-OST-2009-0305 | 2020-1-6 Order Requesting Proposals | Other | Order | 2020-01-16T05:00:00Z | 2020 | 1 | 2020-01-16T05:00:00Z | 2024-11-12T23:16:06Z | 1 | 0 | 09000064842b3947 |
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;