documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2019-0156" 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-2019-0156-0010 | DOT | None DOT-OST-2019-0156 | Department Action on Application re: Air Philippines Corporation dba PAL Express | Other | Agency Response | 2023-07-28T04:00:00Z | 2023 | 7 | 2023-07-28T04:00:00Z | 2024-11-07T01:37:24Z | 1 | 0 | 0900006485d6c449 | ||
| DOT-OST-2019-0156-0009 | DOT | None DOT-OST-2019-0156 | Motion of United Airlines, Inc. | Other | Motion | 2023-07-18T04:00:00Z | 2023 | 7 | 2023-07-18T04:00:00Z | 2024-11-12T22:58:51Z | 1 | 0 | 0900006485ccb0ce | ||
| DOT-OST-2019-0156-0007 | DOT | None DOT-OST-2019-0156 | Air Philippines Corporation dba PAL Express (Correspondence) | Other | Correspondence | 2019-12-19T05:00:00Z | 2019 | 12 | 2019-12-19T05:00:00Z | 2024-11-12T23:15:05Z | 1 | 0 | 090000648423c217 | ||
| DOT-OST-2019-0156-0006 | DOT | None DOT-OST-2019-0156 | Second Surreply and Motion for Leave to File of United Airlines, Inc. | Other | Surreply | 2019-12-17T05:00:00Z | 2019 | 12 | 2019-12-17T05:00:00Z | 2024-11-12T23:14:56Z | 1 | 0 | 090000648421e3a6 | ||
| DOT-OST-2019-0156-0005 | DOT | None DOT-OST-2019-0156 | Sur-Reply and Motion of Air Philippines Corporation dba PAL Express in Support of Its Application for a Statement of Authorization | Other | Surreply | 2019-12-13T05:00:00Z | 2019 | 12 | 2019-12-13T05:00:00Z | 2024-11-12T23:14:20Z | 1 | 0 | 090000648420ca95 | ||
| DOT-OST-2019-0156-0004 | DOT | None DOT-OST-2019-0156 | Surreply and Motion for Leave to File of United Airlines, Inc. | Other | Surreply | 2019-12-05T05:00:00Z | 2019 | 12 | 2019-12-05T05:00:00Z | 2024-11-12T23:13:55Z | 1 | 0 | 09000064841e7efb | ||
| DOT-OST-2019-0156-0003 | DOT | None DOT-OST-2019-0156 | Reply and Motion of Air Philippines Corporation dba PAL Express in Support of its Application for a Statement of Authorization | Other | Reply | 2019-11-27T05:00:00Z | 2019 | 11 | 2019-11-27T05:00:00Z | 2024-11-12T23:13:16Z | 1 | 0 | 09000064841bc476 | ||
| DOT-OST-2019-0156-0002 | DOT | None DOT-OST-2019-0156 | Answer of United Airlines, Inc. | Other | Answer | 2019-11-18T05:00:00Z | 2019 | 11 | 2019-11-18T05:00:00Z | 2024-11-12T23:12:28Z | 1 | 0 | 09000064841659b0 | ||
| DOT-OST-2019-0156-0001 | DOT | None DOT-OST-2019-0156 | Application of Air Philippines Corporation dba PAL Express for a Statement of Authorization | Other | Application-Other | 2019-11-06T05:00:00Z | 2019 | 11 | 2019-11-06T05:00:00Z | 2024-11-12T23:12:14Z | 1 | 0 | 090000648412581a |
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;