documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2012-0205" 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), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- DOT 10
| 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-2012-0205-0010 | DOT | None DOT-OST-2012-0205 | Supplement to Petition for Reconsideration of United Airlines, Inc. | Supporting & Related Material | Supplement | 2013-10-07T04:00:00Z | 2013 | 10 | 2024-11-12T05:21:32Z | 0 | 0 | 09000064814466bd | |||
| DOT-OST-2012-0205-0009 | DOT | None DOT-OST-2012-0205 | Notice Accepting Filing of Objections as Petitions for Reconsideration | Other | Decision | 2013-09-12T04:00:00Z | 2013 | 9 | 2013-09-12T04:00:00Z | 2024-11-11T20:48:29Z | 1 | 0 | 0900006481402a63 | ||
| DOT-OST-2012-0205-0008 | DOT | None DOT-OST-2012-0205 | Answer of Airlines for America to Objections of United Airlines, Inc. | Other | Answer | 2013-09-10T04:00:00Z | 2013 | 9 | 2013-09-10T04:00:00Z | 2024-11-07T22:55:49Z | 1 | 0 | 09000064813ebc83 | ||
| DOT-OST-2012-0205-0007 | DOT | None DOT-OST-2012-0205 | Answer by the Air Line Pilots Association to Objections of United Airlines, Inc. | Other | Answer | 2013-09-10T04:00:00Z | 2013 | 9 | 2013-09-10T04:00:00Z | 2024-11-07T22:56:50Z | 1 | 0 | 09000064813ebc81 | ||
| DOT-OST-2012-0205-0006 | DOT | None DOT-OST-2012-0205 | United Airlines, Inc. (Corrected Certificate of Service) | Other | Correction(s) | 2013-08-28T04:00:00Z | 2013 | 8 | 2013-08-28T04:00:00Z | 2024-11-07T22:57:05Z | 1 | 0 | 09000064813cadbd | ||
| DOT-OST-2012-0205-0005 | DOT | None DOT-OST-2012-0205 | Objections United Airlines, Inc. and Motion for Leave to File | Other | Objection(s) | 2013-08-28T04:00:00Z | 2013 | 8 | 2013-08-28T04:00:00Z | 2024-11-07T22:56:34Z | 1 | 0 | 09000064813cadbb | ||
| DOT-OST-2012-0205-0004 | DOT | None DOT-OST-2012-0205 | 2013-4-12 Order to Show Cause Proposing to Amend and Reissue Certificate Authority | Other | Order | 2013-04-15T04:00:00Z | 2013 | 4 | 2013-04-15T04:00:00Z | 2013-04-23T03:59:59Z | 2024-11-11T20:44:26Z | 1 | 0 | 0900006481294860 | |
| DOT-OST-2012-0205-0003 | DOT | None DOT-OST-2012-0205 | Motion of National Air Cargo Group, Inc. d/b/a National Airlines to Shorten Public Comment Period | Other | Motion | 2013-03-27T04:00:00Z | 2013 | 3 | 2013-03-27T04:00:00Z | 2024-11-07T22:47:40Z | 1 | 0 | 090000648123e8f1 | ||
| DOT-OST-2012-0205-0002 | DOT | None DOT-OST-2012-0205 | Amendment of Application of National Air Cargo Group, Inc. d/b/a National Airlines for Interstate Scheduled Passenger and Cargo Authority | Other | Amendment | 2013-03-19T04:00:00Z | 2013 | 3 | 2013-03-19T04:00:00Z | 2024-11-07T22:47:34Z | 1 | 0 | 0900006481221c4f | ||
| DOT-OST-2012-0205-0001 | DOT | None DOT-OST-2012-0205 | Application of National Air Cargo Group, Inc. d/b/a National Airlines for Interstate Scheduled Passenger and Cargo Authority | Other | Application-SubPartB | 2012-12-11T05:00:00Z | 2012 | 12 | 2012-12-11T05:00:00Z | 2024-11-12T05:09:19Z | 1 | 0 | 0900006481187f40 |
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;