documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2015-0129" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2015-0129-0014 | DOT | None DOT-OST-2015-0129 | Hawaiian Airlines, Inc. (Confidentiality Affidavit) | Other | Affidavit(s) | 2015-12-29T05:00:00Z | 2015 | 12 | 2015-12-29T05:00:00Z | 2017-01-06T15:47:05Z | 0 | 0 | 0900006481dd5b96 | ||
| DOT-OST-2015-0129-0013 | DOT | None DOT-OST-2015-0129 | Hawaiian Airlines, Inc. (Confidentiality Affidavits) | Other | Affidavit(s) | 2015-12-21T05:00:00Z | 2015 | 12 | 2015-12-21T05:00:00Z | 2017-01-06T15:46:57Z | 0 | 0 | 0900006481dc0005 | ||
| DOT-OST-2015-0129-0012 | DOT | None DOT-OST-2015-0129 | Joint Applicants' Response to Order Requesting Additional Information | Other | Response(s) | 2015-12-18T05:00:00Z | 2015 | 12 | 2015-12-18T05:00:00Z | 2017-01-06T15:46:50Z | 0 | 0 | 0900006481dbac53 | ||
| DOT-OST-2015-0129-0011 | DOT | None DOT-OST-2015-0129 | United Airlines, Inc. (Confidentiality Affidavit) | Other | Affidavit(s) | 2015-11-24T05:00:00Z | 2015 | 11 | 2015-11-24T05:00:00Z | 2017-01-06T15:46:43Z | 0 | 0 | 0900006481d6e848 | ||
| DOT-OST-2015-0129-0009 | DOT | None DOT-OST-2015-0129 | 2015-11-1 Order Requesting Additional Information | Other | Order | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T05:00:00Z | 2017-01-06T15:46:32Z | 0 | 0 | 0900006481d04216 | ||
| DOT-OST-2015-0129-0008 | DOT | None DOT-OST-2015-0129 | Response from SCT Mexico | Other | 2015-10-01T00:00:00Z | 2015 | 10 | 2015-10-02T13:55:09Z | 0 | 1 | 0900006481ca53df | ||||
| DOT-OST-2015-0129-0007 | DOT | None DOT-OST-2015-0129 | Air New Zealand Limited - Notice of Substitution of Confidentiality Affidavit | Other | Affidavit(s) | 2015-07-23T04:00:00Z | 2015 | 7 | 2015-07-23T04:00:00Z | 2017-01-06T15:46:25Z | 0 | 0 | 0900006481b99ce3 | ||
| DOT-OST-2015-0129-0006 | DOT | None DOT-OST-2015-0129 | Air New Zealand Limited (Confidentiality Affidavits) | Other | Affidavit(s) | 2015-07-20T04:00:00Z | 2015 | 7 | 2015-07-20T04:00:00Z | 2017-01-06T15:46:19Z | 0 | 0 | 0900006481b8eca6 | ||
| DOT-OST-2015-0129-0005 | DOT | None DOT-OST-2015-0129 | United Airlines, Inc. (Confidentiality Affidavits) | Other | Affidavit(s) | 2015-07-07T04:00:00Z | 2015 | 7 | 2015-07-07T04:00:00Z | 2017-01-06T15:46:12Z | 0 | 0 | 0900006481b6b73d | ||
| DOT-OST-2015-0129-0003 | DOT | None DOT-OST-2015-0129 | Notice for Access to Documents and Schedule Suspension | Other | Decision | 2015-06-18T04:00:00Z | 2015 | 6 | 2015-06-18T04:00:00Z | 2015-08-24T15:30:24Z | 0 | 0 | 0900006481b45b60 | ||
| DOT-OST-2015-0129-0002 | DOT | None DOT-OST-2015-0129 | Joint Motion for Confidential Treatment Under 14 C.F.R. 302.12 | Other | Motion | 2015-06-16T04:00:00Z | 2015 | 6 | 2015-06-16T04:00:00Z | 2017-01-06T15:45:38Z | 0 | 0 | 0900006481b3d2eb | ||
| DOT-OST-2015-0129-0001 | DOT | None DOT-OST-2015-0129 | Joint Application for Approval and Antitrust Immunity for Proposed Alliance | Other | Application-Other | 2015-06-11T04:00:00Z | 2015 | 6 | 2015-06-11T04:00:00Z | 2017-03-10T09:13:11Z | 0 | 0 | 0900006481b27deb |
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;