documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2008-0272" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2008-0272-0104 | DOT | None DOT-OST-2008-0272 | Malaysian Airline Systems Berhad (Conflict of Laws Waiver Request) | Other | Request | 2012-12-26T05:00:00Z | 2012 | 12 | 2012-12-26T05:00:00Z | 2024-11-12T05:10:29Z | 1 | 0 | 0900006481192aa3 | ||
| DOT-OST-2008-0272-0105 | DOT | None DOT-OST-2008-0272 | Motion of Japan Airlines International Co., Ltd. for Confidential Treatment Under Rule 12 of the Department’s Rules of Practice | Other | Motion | 2012-12-26T05:00:00Z | 2012 | 12 | 2012-12-26T05:00:00Z | 2024-11-12T05:09:15Z | 1 | 0 | 0900006481192e06 | ||
| DOT-OST-2008-0272-0102 | DOT | None DOT-OST-2008-0272 | Air New Zealand (Conflict of Law Waiver Request) | Other | Request | 2012-12-26T05:00:00Z | 2012 | 12 | 2012-12-26T05:00:00Z | 2024-11-12T05:09:29Z | 1 | 0 | 09000064811929de | ||
| DOT-OST-2008-0272-0103 | DOT | None DOT-OST-2008-0272 | Finnair OYJ (DOT's Denial of Conflict of Laws Waiver Determination) | Other | Letter(s) | 2012-12-26T05:00:00Z | 2012 | 12 | 2012-12-26T05:00:00Z | 2024-11-12T05:10:06Z | 1 | 0 | 09000064811929e3 | ||
| DOT-OST-2008-0272-0101 | DOT | None DOT-OST-2008-0272 | Response of Emirates and Etihad to DOT Request for Information | Other | Response(s) | 2012-12-09T05:00:00Z | 2012 | 12 | 2012-12-09T05:00:00Z | 2024-11-12T05:08:52Z | 1 | 0 | 09000064811781f7 | ||
| DOT-OST-2008-0272-0100 | DOT | None DOT-OST-2008-0272 | Supplement to Lan Colombia's Request for Equivalent Alternative Under 14 C.F.R. 382.67 | Supporting & Related Material | Supplement | 2012-12-05T05:00:00Z | 2012 | 12 | 2024-11-12T05:11:27Z | 0 | 0 | 090000648117f888 | |||
| DOT-OST-2008-0272-0099 | DOT | None DOT-OST-2008-0272 | Condor Flugdienst GmbH (Response to Request for Conflict of Law Waiver) | Other | Response(s) | 2012-12-04T05:00:00Z | 2012 | 12 | 2012-12-04T05:00:00Z | 2024-11-12T05:08:26Z | 1 | 0 | 09000064811778be | ||
| DOT-OST-2008-0272-0098 | DOT | None DOT-OST-2008-0272 | KLM Royal Dutch Airlines (DOT Response to Conflict of Law Waiver Request) | Other | Letter(s) | 2012-11-19T05:00:00Z | 2012 | 11 | 2012-11-19T05:00:00Z | 2024-11-12T05:06:16Z | 1 | 0 | 0900006481168962 | ||
| DOT-OST-2008-0272-0097 | DOT | None DOT-OST-2008-0272 | Qantas Airways Limited (Grant of Request) | Other | Letter(s) | 2012-11-08T05:00:00Z | 2012 | 11 | 2012-11-08T05:00:00Z | 2024-11-12T05:07:44Z | 1 | 0 | 0900006481161ba2 |
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;