documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2021-0044" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2021-0044-0012 | DOT | None DOT-OST-2021-0044 | 2024-12-18 Order Denying Waiver from Dormancy, Dismissing Notice to Resume Operations, and Revoking Certificate Authority | Other | Order | 2024-12-20T05:00:00Z | 2024 | 12 | 2024-12-20T05:00:00Z | 2024-12-20T19:32:09Z | 1 | 0 | 0900006486882995 | ||
| DOT-OST-2021-0044-0011 | DOT | None DOT-OST-2021-0044 | Request for Additional Information | Other | Request | 2024-05-07T04:00:00Z | 2024 | 5 | 2024-05-07T04:00:00Z | 2024-11-12T22:31:07Z | 1 | 0 | 090000648654aa56 | ||
| DOT-OST-2021-0044-0010 | DOT | None DOT-OST-2021-0044 | Notice of ExpressJet Airlines LLC and Motion for Confidential Treatment | Other | Motion | 2023-11-21T05:00:00Z | 2023 | 11 | 2023-11-21T05:00:00Z | 2024-11-12T06:22:36Z | 1 | 0 | 09000064862a1ebf | ||
| DOT-OST-2021-0044-0009 | DOT | None DOT-OST-2021-0044 | ExpressJet Airlines LLC (Request for Waiver and 90-Day Extension of Time) | Other | Request | 2023-07-17T04:00:00Z | 2023 | 7 | 2023-07-17T04:00:00Z | 2024-11-06T23:45:38Z | 1 | 0 | 0900006485ccbce2 | ||
| DOT-OST-2021-0044-0008 | DOT | None DOT-OST-2021-0044 | ExpressJet Airlines LLC - Response to Request for Additional Information | Other | Response(s) | 2021-07-30T04:00:00Z | 2021 | 7 | 2021-07-30T04:00:00Z | 2024-11-06T23:49:19Z | 1 | 0 | 0900006484c1cf0b | ||
| DOT-OST-2021-0044-0007 | DOT | None DOT-OST-2021-0044 | 2021-7-24 Final Order | Other | Order | 2021-07-30T04:00:00Z | 2021 | 7 | 2021-07-30T04:00:00Z | 2024-11-06T23:49:29Z | 1 | 0 | 0900006484c1b484 | ||
| DOT-OST-2021-0044-0006 | DOT | None DOT-OST-2021-0044 | 2021-7-11 Order to Show Cause | Other | Order | 2021-07-20T04:00:00Z | 2021 | 7 | 2021-07-20T04:00:00Z | 2024-11-12T23:32:08Z | 1 | 0 | 0900006484c038c6 | ||
| DOT-OST-2021-0044-0005 | DOT | None DOT-OST-2021-0044 | Supplement No. 1 of ExpressJet Airlines LLC | Other | Supplement (SUP) | 2021-05-13T04:00:00Z | 2021 | 5 | 2021-05-13T04:00:00Z | 2024-11-12T23:30:44Z | 1 | 0 | 0900006484afd5d0 | ||
| DOT-OST-2021-0044-0004 | DOT | None DOT-OST-2021-0044 | Request for Additional Information | Other | Request | 2021-05-07T04:00:00Z | 2021 | 5 | 2021-05-07T04:00:00Z | 2024-11-06T23:46:47Z | 1 | 0 | 0900006484ad87d7 | ||
| DOT-OST-2021-0044-0003 | DOT | None DOT-OST-2021-0044 | Motion of ExpressJet Airlines LLC for an Order to Show Cause and Shortened Answer Period | Other | Motion | 2021-04-29T04:00:00Z | 2021 | 4 | 2021-04-29T04:00:00Z | 2024-11-06T23:47:04Z | 1 | 0 | 0900006484abce45 | ||
| DOT-OST-2021-0044-0001 | DOT | None DOT-OST-2021-0044 | Application and Notice of ExpressJet Alliance Airlines LLC | Other | Application-Other | 2021-04-16T04:00:00Z | 2021 | 4 | 2021-04-16T04:00:00Z | 2024-11-06T23:46:09Z | 1 | 0 | 0900006484aa9096 | ||
| DOT-OST-2021-0044-0002 | DOT | None DOT-OST-2021-0044 | Motion of ExpressJet Airways, LLC for Confidential Treatment | Other | Motion | 2021-04-16T04:00:00Z | 2021 | 4 | 2021-04-16T04:00:00Z | 2024-11-06T23:46:09Z | 1 | 0 | 0900006484aa949d |
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;