documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2014-0069" and posted_year = 2014 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), comment_end_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-2014-0069-0010 | DOT | None DOT-OST-2014-0069 | Dynamic Airways LLC (Response to Letter Dated November 10, 2014) | Other | Response(s) | 2014-12-15T05:00:00Z | 2014 | 12 | 2014-12-15T05:00:00Z | 2024-11-12T05:33:46Z | 1 | 0 | 09000064819601cd | ||
| DOT-OST-2014-0069-0011 | DOT | None DOT-OST-2014-0069 | Ex Parte Correspondence to the Alexander A. Sablan, President of the Saipan Chamber of Commerce | Other | Correspondence | 2014-12-15T05:00:00Z | 2014 | 12 | 2014-12-15T05:00:00Z | 2024-11-11T20:55:15Z | 1 | 0 | 09000064819688a8 | ||
| DOT-OST-2014-0069-0012 | DOT | None DOT-OST-2014-0069 | Request for Additional/Clarifying Information | Other | Request | 2014-12-15T05:00:00Z | 2014 | 12 | 2014-12-15T05:00:00Z | 2024-11-12T05:31:32Z | 1 | 0 | 090000648196ec1b | ||
| DOT-OST-2014-0069-0009 | DOT | None DOT-OST-2014-0069 | DOT's Request for Documents | Other | Request | 2014-12-04T05:00:00Z | 2014 | 12 | 2014-12-04T05:00:00Z | 2024-11-11T20:56:48Z | 1 | 0 | 0900006481952843 | ||
| DOT-OST-2014-0069-0008 | DOT | None DOT-OST-2014-0069 | DOT's Response to Request of Dynamic Airways, LLC for Confidential Treatment | Other | Response(s) | 2014-11-15T05:00:00Z | 2014 | 11 | 2014-11-15T05:00:00Z | 2024-11-12T05:33:54Z | 1 | 0 | 0900006481927c16 | ||
| DOT-OST-2014-0069-0007 | DOT | None DOT-OST-2014-0069 | Dynamic Airways, LLC (Additional Information) | Other | Additional Information | 2014-10-24T04:00:00Z | 2014 | 10 | 2014-10-24T04:00:00Z | 2024-11-07T23:11:40Z | 1 | 0 | 09000064818be1bb | ||
| DOT-OST-2014-0069-0006 | DOT | None DOT-OST-2014-0069 | Motion of Dynamic Airways for Confidential Treatment Pursuant to Rule 302.12 | Other | Motion | 2014-10-15T04:00:00Z | 2014 | 10 | 2014-10-15T04:00:00Z | 2024-11-07T23:10:38Z | 1 | 0 | 09000064818ba930 | ||
| DOT-OST-2014-0069-0005 | DOT | None DOT-OST-2014-0069 | Amended Application of Dynamic Airways, LLC | Other | Application-SubPartB | 2014-10-15T04:00:00Z | 2014 | 10 | 2014-10-15T04:00:00Z | 2014-11-01T03:59:59Z | 2024-11-11T20:54:31Z | 1 | 0 | 09000064818ba6c7 | |
| DOT-OST-2014-0069-0004 | DOT | None DOT-OST-2014-0069 | Request for Additional Information | Other | Request | 2014-09-23T04:00:00Z | 2014 | 9 | 2014-09-23T04:00:00Z | 2024-11-07T23:09:40Z | 1 | 0 | 090000648187d0b2 | ||
| DOT-OST-2014-0069-0003 | DOT | None DOT-OST-2014-0069 | Dynamic Airways, LLC (Changes in Senior Management) | Other | Letter(s) | 2014-07-31T04:00:00Z | 2014 | 7 | 2014-07-31T04:00:00Z | 2024-11-07T23:08:29Z | 1 | 0 | 09000064817cb46b | ||
| DOT-OST-2014-0069-0001 | DOT | None DOT-OST-2014-0069 | Application of Dynamic Airways, LLC | Other | Application-SubPartB | 2014-05-12T04:00:00Z | 2014 | 5 | 2014-05-12T04:00:00Z | 2024-11-11T20:52:52Z | 1 | 0 | 09000064816ee5f4 | ||
| DOT-OST-2014-0069-0002 | DOT | None DOT-OST-2014-0069 | Motion of Dynamic Airways, LLC for Confidential Treatment Pursuant to Rule 302.12 | Other | Motion | 2014-05-12T04:00:00Z | 2014 | 5 | 2014-05-12T04:00:00Z | 2024-11-11T20:52:46Z | 1 | 0 | 09000064816f25cc |
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;