documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2015-0043" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2015-0043-0026 | DOT | None DOT-OST-2015-0043 | 21 Air, LLC Reply to Allied Pilots Association Answer | Other | Answer | 2021-12-14T05:00:00Z | 2021 | 12 | 2021-12-14T05:00:00Z | 2024-11-12T23:36:17Z | 1 | 0 | 0900006484ec8e54 | ||
| DOT-OST-2015-0043-0024 | DOT | None DOT-OST-2015-0043 | 21 Air, LLC Supplemental Reply | Other | Reply | 2021-12-10T05:00:00Z | 2021 | 12 | 2021-12-10T05:00:00Z | 2024-11-07T00:36:19Z | 1 | 0 | 0900006484eb9285 | ||
| DOT-OST-2015-0043-0025 | DOT | None DOT-OST-2015-0043 | Answer of the Allied Pilots Association | Other | Answer | 2021-12-10T05:00:00Z | 2021 | 12 | 2021-12-10T05:00:00Z | 2024-11-07T00:36:17Z | 1 | 0 | 0900006484eb9af3 | ||
| DOT-OST-2015-0043-0023 | DOT | None DOT-OST-2015-0043 | Response and Clarification of Air Line Pilots Association, International, to Reply of 21 Air and Motion for Leave to File | Other | Response(s) | 2021-12-01T05:00:00Z | 2021 | 12 | 2021-12-01T05:00:00Z | 2024-11-07T00:34:49Z | 1 | 0 | 0900006484e8f6e6 | ||
| DOT-OST-2015-0043-0022 | DOT | None DOT-OST-2015-0043 | 21 Air, LLC Reply to Response of ALPA | Other | Reply | 2021-11-22T05:00:00Z | 2021 | 11 | 2021-11-22T05:00:00Z | 2024-11-12T23:34:14Z | 1 | 0 | 0900006484e686e8 | ||
| DOT-OST-2015-0043-0021 | DOT | None DOT-OST-2015-0043 | Response of Air Line Pilots Association, International, to Answer of 21 Air and Motion for Leave to File | Other | Response(s) | 2021-11-09T05:00:00Z | 2021 | 11 | 2021-11-09T05:00:00Z | 2024-11-07T00:33:56Z | 1 | 0 | 0900006484e38d4f | ||
| DOT-OST-2015-0043-0020 | DOT | None DOT-OST-2015-0043 | Answer of 21 Air, LLC | Other | Answer | 2021-11-01T04:00:00Z | 2021 | 11 | 2021-11-01T04:00:00Z | 2024-11-07T00:33:58Z | 1 | 0 | 0900006484e04c03 | ||
| DOT-OST-2015-0043-0019 | DOT | None DOT-OST-2015-0043 | Supplement to Petition of Air Line Pilots Association, International for Reconsideration or Petition for Review of Staff Action | Other | Supplement (SUP) | 2021-10-28T04:00:00Z | 2021 | 10 | 2021-10-28T04:00:00Z | 2024-11-07T00:33:11Z | 1 | 0 | 0900006484dfe14f | ||
| DOT-OST-2015-0043-0018 | DOT | None DOT-OST-2015-0043 | Petition of Air Line Pilots Association, International for Reconsideration or Petition for Review of Staff Action | Other | Petition(s) | 2021-10-25T04:00:00Z | 2021 | 10 | 2021-10-25T04:00:00Z | 2024-11-12T23:34:07Z | 1 | 0 | 0900006484de69f4 | ||
| DOT-OST-2015-0043-0017 | DOT | None DOT-OST-2015-0043 | Motion of 21 Air LLC to Withhold Information form Public Disclosure and Fleet Expansion Request | Other | Motion | 2021-09-23T04:00:00Z | 2021 | 9 | 2021-09-23T04:00:00Z | 2024-11-07T00:32:07Z | 1 | 0 | 0900006484da3e13 |
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;