documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2005-20735" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, 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-2005-20735-0176 | DOT | None DOT-OST-2005-20735 | 2024-12-11 Erratum and Corrected Appendix | Other | Order | 2024-12-18T05:00:00Z | 2024 | 12 | 2024-12-18T05:00:00Z | 2024-12-18T13:40:00Z | 1 | 0 | 090000648687b855 | ||
| DOT-OST-2005-20735-0175 | DOT | None DOT-OST-2005-20735 | 2024-11-10 Order Extending Service Obligation | Other | Order | 2024-11-21T05:00:00Z | 2024 | 11 | 2024-11-21T05:00:00Z | 2024-11-26T16:59:42Z | 1 | 0 | 090000648682cd1b | ||
| DOT-OST-2005-20735-0174 | DOT | None DOT-OST-2005-20735 | 2024-9-18 Order Selecting Air Carrier | Other | Order | 2024-09-20T04:00:00Z | 2024 | 9 | 2024-09-20T04:00:00Z | 2024-11-12T22:44:00Z | 1 | 0 | 09000064867639a5 | ||
| DOT-OST-2005-20735-0173 | DOT | None DOT-OST-2005-20735 | Comments of Southern Airways Express, LLC | Other | Correspondence | 2024-09-13T04:00:00Z | 2024 | 9 | 2024-09-13T04:00:00Z | 2024-11-12T22:43:32Z | 1 | 0 | 09000064866fd4e4 | ||
| DOT-OST-2005-20735-0172 | DOT | None DOT-OST-2005-20735 | Morgantown Municipal Airport (Letter of Recommendation for EAS) | Other | Correspondence | 2024-08-07T04:00:00Z | 2024 | 8 | 2024-08-07T04:00:00Z | 2024-08-07T18:07:54Z | 0 | 0 | 09000064866233c4 | ||
| DOT-OST-2005-20735-0171 | DOT | None DOT-OST-2005-20735 | SkyWest Airlines (Proposal) | Other | Proposal(s) | 2024-07-05T04:00:00Z | 2024 | 7 | 2024-07-05T04:00:00Z | 2024-11-12T22:37:05Z | 1 | 0 | 09000064865dc9b6 | ||
| DOT-OST-2005-20735-0170 | DOT | None DOT-OST-2005-20735 | Southern Airways Express LLC (Proposal) | Other | Proposal(s) | 2024-07-03T04:00:00Z | 2024 | 7 | 2024-07-03T04:00:00Z | 2024-11-12T22:38:11Z | 1 | 0 | 09000064865d92af | ||
| DOT-OST-2005-20735-0166 | DOT | None DOT-OST-2005-20735 | Request for Community Comments | Other | Request | 2024-07-03T04:00:00Z | 2024 | 7 | 2024-07-03T04:00:00Z | 2024-11-12T22:38:10Z | 1 | 0 | 09000064865d927f | ||
| DOT-OST-2005-20735-0169 | DOT | None DOT-OST-2005-20735 | Hyannis Air Service, Inc. dba Cape Air (Proposal) | Other | Proposal(s) | 2024-07-03T04:00:00Z | 2024 | 7 | 2024-07-03T04:00:00Z | 2024-11-12T22:38:11Z | 1 | 0 | 09000064865d9285 | ||
| DOT-OST-2005-20735-0167 | DOT | None DOT-OST-2005-20735 | Boutique Air (Proposal) | Other | Proposal(s) | 2024-07-03T04:00:00Z | 2024 | 7 | 2024-07-03T04:00:00Z | 2024-11-12T22:38:10Z | 1 | 0 | 09000064865d9281 | ||
| DOT-OST-2005-20735-0168 | DOT | None DOT-OST-2005-20735 | Corporate Flight Management Inc. dba Contour Airlines (Proposal) | Other | Proposal(s) | 2024-07-03T04:00:00Z | 2024 | 7 | 2024-07-03T04:00:00Z | 2024-11-12T22:38:11Z | 1 | 0 | 09000064865d9283 | ||
| DOT-OST-2005-20735-0165 | DOT | None DOT-OST-2005-20735 | 2024-5-29 Order Requesting Proposals | Other | Order | 2024-05-29T04:00:00Z | 2024 | 5 | 2024-05-29T04:00:00Z | 2024-11-12T22:31:18Z | 1 | 0 | 090000648658a709 |
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;