documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2002-12555" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, open_for_comment, withdrawn, 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-2002-12555-0262 | DOT | None DOT-OST-2002-12555 | Kenmore Air Express, LLC | Other | Correspondence | 2018-11-26T05:00:00Z | 2018 | 11 | 2018-11-26T05:00:00Z | 2024-11-12T22:50:27Z | 1 | 0 | 09000064838f98a3 | ||
| DOT-OST-2002-12555-0261 | DOT | None DOT-OST-2002-12555 | Norwegian Air Norway AS | Other | 2018-08-31T00:00:00Z | 2018 | 8 | 2024-11-07T01:37:05Z | 0 | 1 | 09000064836891c1 | ||||
| DOT-OST-2002-12555-0260 | DOT | None DOT-OST-2002-12555 | PAL Airlines Ltd. dba PAL Airlines and Provincial Airlines | Other | 2018-08-21T00:00:00Z | 2018 | 8 | 2024-11-07T01:05:17Z | 0 | 1 | 0900006483639788 | ||||
| DOT-OST-2002-12555-0259 | DOT | None DOT-OST-2002-12555 | Southern Air Inc. | Other | Correspondence | 2018-05-11T04:00:00Z | 2018 | 5 | 2018-05-11T04:00:00Z | 2024-11-07T01:30:08Z | 1 | 0 | 090000648325c4fc | ||
| DOT-OST-2002-12555-0258 | DOT | None DOT-OST-2002-12555 | Corendon Dutch Airlines B.V. | Other | 2018-05-11T00:00:00Z | 2018 | 5 | 2024-11-07T01:29:41Z | 0 | 1 | 0900006483259e9d | ||||
| DOT-OST-2002-12555-0257 | DOT | None DOT-OST-2002-12555 | Bidzy Ta Hot' Aana, Inc. d/b/a/ Tanana Air Service | Other | Correspondence | 2018-04-17T04:00:00Z | 2018 | 4 | 2018-04-17T04:00:00Z | 2024-11-07T01:25:36Z | 1 | 0 | 090000648314d319 | ||
| DOT-OST-2002-12555-0256 | DOT | None DOT-OST-2002-12555 | Andrew Airways Inc. | Other | Correspondence | 2018-02-08T05:00:00Z | 2018 | 2 | 2018-02-08T05:00:00Z | 2024-11-07T01:21:24Z | 1 | 0 | 0900006482ef9555 | ||
| DOT-OST-2002-12555-0255 | DOT | None DOT-OST-2002-12555 | Western Global Airlines, LLC | Other | Correspondence | 2018-02-02T05:00:00Z | 2018 | 2 | 2018-02-02T05:00:00Z | 2024-11-07T01:21:03Z | 1 | 0 | 0900006482ec5a24 | ||
| DOT-OST-2002-12555-0254 | DOT | None DOT-OST-2002-12555 | J & M Alaska Air Tours, Inc. d/b/a Alaska Air Transit | Other | Correspondence | 2018-02-02T05:00:00Z | 2018 | 2 | 2018-02-02T05:00:00Z | 2024-11-07T01:20:55Z | 1 | 0 | 0900006482ead8e2 | ||
| DOT-OST-2002-12555-0253 | DOT | None DOT-OST-2002-12555 | Servant Air, Inc. | Other | Correspondence | 2018-02-01T05:00:00Z | 2018 | 2 | 2018-02-01T05:00:00Z | 2024-11-07T01:21:05Z | 1 | 0 | 0900006482e98e0d |
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;