documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2022-0071" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2022-0071-0012 | DOT | None DOT-OST-2022-0071 | Allied Pilots Association, Coalition of Airline Pilots Associations, NetJets Association of Shared Aircraft Pilots, and Southwest Airlines Pilots Association (Correspondence) | Other | Correspondence | 2022-12-27T05:00:00Z | 2022 | 12 | 2022-12-27T05:00:00Z | 2024-11-07T00:45:27Z | 1 | 0 | 0900006485554fe9 | ||
| DOT-OST-2022-0071-0011 | DOT | None DOT-OST-2022-0071 | City of Victoria, Texas (Letter of Support) | Other | Letter(s) in Support | 2022-11-16T05:00:00Z | 2022 | 11 | 2022-11-16T05:00:00Z | 2024-11-12T23:47:52Z | 1 | 0 | 09000064854bcad9 | ||
| DOT-OST-2022-0071-0010 | DOT | None DOT-OST-2022-0071 | Honorable Ben Zeller (Letter of Support) | Other | Letter(s) in Support | 2022-11-15T05:00:00Z | 2022 | 11 | 2022-11-15T05:00:00Z | 2024-11-12T23:47:09Z | 1 | 0 | 09000064854b31aa | ||
| DOT-OST-2022-0071-0009 | DOT | None DOT-OST-2022-0071 | Response of SkyWest Charter, LLC to Request for Additional Information | Other | Response(s) | 2022-09-07T04:00:00Z | 2022 | 9 | 2022-09-07T04:00:00Z | 2024-11-07T00:42:40Z | 1 | 0 | 09000064852c497d | ||
| DOT-OST-2022-0071-0008 | DOT | None DOT-OST-2022-0071 | Request for Information | Other | Request | 2022-09-01T04:00:00Z | 2022 | 9 | 2022-09-01T04:00:00Z | 2024-11-12T23:45:01Z | 1 | 0 | 09000064852a68c6 | ||
| DOT-OST-2022-0071-0007 | DOT | None DOT-OST-2022-0071 | Motion of SkyWest Charter, LLC for Leave to File in Response to Surreply of the Air Line Pilots Association, International and Request for Expedition | Other | Motion | 2022-08-02T04:00:00Z | 2022 | 8 | 2022-08-02T04:00:00Z | 2024-11-07T00:41:49Z | 1 | 0 | 09000064852013e7 | ||
| DOT-OST-2022-0071-0006 | DOT | None DOT-OST-2022-0071 | Motion for Leave to File and Surreply of the Air Line Pilots Association, International | Other | Surreply | 2022-07-28T04:00:00Z | 2022 | 7 | 2022-07-28T04:00:00Z | 2024-11-07T00:40:48Z | 1 | 0 | 09000064851f1584 | ||
| DOT-OST-2022-0071-0005 | DOT | None DOT-OST-2022-0071 | Reply of SkyWest Charter, LLC to Answer of the Air Line Pilots Association, International | Other | Reply | 2022-07-20T04:00:00Z | 2022 | 7 | 2022-07-20T04:00:00Z | 2024-11-07T00:41:15Z | 1 | 0 | 09000064851d4f54 | ||
| DOT-OST-2022-0071-0004 | DOT | None DOT-OST-2022-0071 | Regional Airline Association (Letter of Support) | Other | Letter(s) in Support | 2022-07-12T04:00:00Z | 2022 | 7 | 2022-07-12T04:00:00Z | 2024-11-12T23:42:15Z | 1 | 0 | 09000064851bd2e7 | ||
| DOT-OST-2022-0071-0003 | DOT | None DOT-OST-2022-0071 | Answer of the Air Line Pilots Association, International | Other | Answer | 2022-07-08T04:00:00Z | 2022 | 7 | 2022-07-08T04:00:00Z | 2024-11-12T23:42:12Z | 1 | 0 | 09000064851b75f5 | ||
| DOT-OST-2022-0071-0002 | DOT | None DOT-OST-2022-0071 | Denver International Airport (Letter of Support) | Other | Letter(s) in Support | 2022-06-30T04:00:00Z | 2022 | 6 | 2022-06-30T04:00:00Z | 2024-11-12T23:43:00Z | 1 | 0 | 09000064851abb49 | ||
| DOT-OST-2022-0071-0001 | DOT | None DOT-OST-2022-0071 | Application of SkyWest Charter, LLC for a Commuter Air Carrier Authorization | Other | Application-SubPartB | 2022-06-21T04:00:00Z | 2022 | 6 | 2022-06-21T04:00:00Z | 2025-01-05T00:26:43Z | 1 | 0 | 090000648517a766 |
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;