documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "DOT-OST-2019-0075" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2019-0075-0007 | DOT | None DOT-OST-2019-0075 | 2023-5-11 Final Order | Other | Order | 2023-05-10T04:00:00Z | 2023 | 5 | 2023-05-10T04:00:00Z | 2024-11-11T21:24:13Z | 1 | 0 | 09000064859efcf1 | ||
| DOT-OST-2019-0075-0006 | DOT | None DOT-OST-2019-0075 | 2023-2-14 Order Granting Exemption and to Show Cause | Other | Order | 2023-02-15T05:00:00Z | 2023 | 2 | 2023-02-15T05:00:00Z | 2024-11-07T00:47:54Z | 1 | 0 | 09000064856a3112 | ||
| DOT-OST-2019-0075-0005 | DOT | None DOT-OST-2019-0075 | Application of Concierge U Ltd. dba Jet Concierge Club | Other | Application-Other | 2022-12-16T05:00:00Z | 2022 | 12 | 2022-12-16T05:00:00Z | 2024-11-07T00:45:42Z | 1 | 0 | 090000648553d5cb | ||
| DOT-OST-2019-0075-0004 | DOT | None DOT-OST-2019-0075 | Application of Concierge U Ltd. dba Jet Concierge Club for an Exemption and Foreign Air Carrier Permit and Motion for Confidential Treatment | Other | Application-Other | 2021-12-03T05:00:00Z | 2021 | 12 | 2021-12-03T05:00:00Z | 2024-11-12T23:35:23Z | 1 | 0 | 0900006484e9d8c1 | ||
| DOT-OST-2019-0075-0003 | DOT | None DOT-OST-2019-0075 | 2020-12-25 Order Granting Exemptions, Amending/Reissuing Statements of Authorization, Amending Part 375 Special Authorizations, and to Show Cause | Other | Order | 2020-12-29T05:00:00Z | 2020 | 12 | 2020-12-29T05:00:00Z | 2021-02-03T14:09:37Z | 0 | 0 | 09000064849d064e | ||
| DOT-OST-2019-0075-0002 | DOT | None DOT-OST-2019-0075 | Notice of Action Taken re: Concierge U Ltd. dba Jet Concierge Club | Other | Decision | 2019-07-12T04:00:00Z | 2019 | 7 | 2019-07-12T04:00:00Z | 2024-11-12T23:04:45Z | 1 | 0 | 0900006483d88df2 | ||
| DOT-OST-2019-0075-0001 | DOT | None DOT-OST-2019-0075 | Application of Concierge U Ltd. dba Jet Concierge Club for an Exemption and Foreign Air Carrier Permit | Other | Application-SubPartB | 2019-05-10T04:00:00Z | 2019 | 5 | 2019-05-10T04:00:00Z | 2024-11-12T22:59:14Z | 1 | 0 | 0900006483c5b80c |
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;