documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "DOT-OST-2003-14822" and posted_year = 2022 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-2003-14822-0090 | DOT | None DOT-OST-2003-14822 | 2022-11-31 Order Selecting Air Carrier | Other | Order | 2022-11-30T05:00:00Z | 2022 | 11 | 2022-11-30T05:00:00Z | 2024-11-07T00:45:25Z | 1 | 0 | 090000648550a515 | ||
| DOT-OST-2003-14822-0089 | DOT | None DOT-OST-2003-14822 | City of Lebanon, New Hampshire (Community Comment) | Other | Correspondence | 2022-10-13T04:00:00Z | 2022 | 10 | 2022-10-13T04:00:00Z | 2024-11-12T23:46:10Z | 1 | 0 | 09000064854032ff | ||
| DOT-OST-2003-14822-0088 | DOT | None DOT-OST-2003-14822 | Dartmouth College - American University of Kuwait Program (Letter of Support) | Other | Letter(s) in Support | 2022-10-07T04:00:00Z | 2022 | 10 | 2022-10-07T04:00:00Z | 2024-11-07T00:43:09Z | 1 | 0 | 09000064853d6e6c | ||
| DOT-OST-2003-14822-0087 | DOT | None DOT-OST-2003-14822 | Dale Eickelman (Community Comment) | Other | Correspondence | 2022-09-29T04:00:00Z | 2022 | 9 | 2022-09-29T04:00:00Z | 2024-11-12T22:53:41Z | 1 | 0 | 0900006485383e94 | ||
| DOT-OST-2003-14822-0086 | DOT | None DOT-OST-2003-14822 | Paul Mutone (Community Comment) | Other | Correspondence | 2022-08-12T04:00:00Z | 2022 | 8 | 2022-08-12T04:00:00Z | 2024-11-12T23:43:34Z | 1 | 0 | 0900006485233612 | ||
| DOT-OST-2003-14822-0085 | DOT | None DOT-OST-2003-14822 | JetBlue (Letter of Support for Cape Air) | Other | Letter(s) in Support | 2022-07-28T04:00:00Z | 2022 | 7 | 2022-07-28T04:00:00Z | 2024-11-07T00:40:50Z | 1 | 0 | 09000064851f1865 | ||
| DOT-OST-2003-14822-0084 | DOT | None DOT-OST-2003-14822 | Request for Community Comments | Other | Request | 2022-07-28T04:00:00Z | 2022 | 7 | 2022-07-28T04:00:00Z | 2024-11-07T00:40:52Z | 1 | 0 | 09000064851f16da | ||
| DOT-OST-2003-14822-0081 | DOT | None DOT-OST-2003-14822 | Boutique Air (Proposal) | Other | Proposal(s) | 2022-07-27T04:00:00Z | 2022 | 7 | 2022-07-27T04:00:00Z | 2022-07-27T15:01:49Z | 0 | 0 | 09000064851ed89d | ||
| DOT-OST-2003-14822-0083 | DOT | None DOT-OST-2003-14822 | Hyannis Air Service, Inc. dba Cape Air (Proposal) | Other | Proposal(s) | 2022-07-27T04:00:00Z | 2022 | 7 | 2022-07-27T04:00:00Z | 2024-11-07T00:40:52Z | 1 | 0 | 09000064851eda02 | ||
| DOT-OST-2003-14822-0082 | DOT | None DOT-OST-2003-14822 | Southern Airways Express LLC (Proposal) | Other | Proposal(s) | 2022-07-27T04:00:00Z | 2022 | 7 | 2022-07-27T04:00:00Z | 2024-11-07T00:40:51Z | 1 | 0 | 09000064851eda00 | ||
| DOT-OST-2003-14822-0080 | DOT | None DOT-OST-2003-14822 | 2022-6-14 Order Requesting Proposals | Other | Order | 2022-06-22T04:00:00Z | 2022 | 6 | 2022-06-22T04:00:00Z | 2024-11-12T23:41:56Z | 1 | 0 | 09000064851874a4 |
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;