documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2011-0076" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-2011-0076-0039 | DOT | None DOT-OST-2011-0076 | US Airways, Inc. (Dormancy Letter) | Other | Letter(s) | 2013-08-20T04:00:00Z | 2013 | 8 | 2013-08-20T04:00:00Z | 2024-11-07T22:58:48Z | 1 | 0 | 09000064813b23e4 | ||
| DOT-OST-2011-0076-0038 | DOT | None DOT-OST-2011-0076 | 2013-7-7 Order Issuing Certificates | Other | Order | 2013-07-09T04:00:00Z | 2013 | 7 | 2013-07-09T04:00:00Z | 2024-11-07T22:58:16Z | 1 | 0 | 090000648135cb8e | ||
| DOT-OST-2011-0076-0037 | DOT | None DOT-OST-2011-0076 | United Airlines, Inc. | Other | Letter(s) | 2013-06-21T04:00:00Z | 2013 | 6 | 2013-06-21T04:00:00Z | 2024-11-12T05:19:12Z | 1 | 0 | 0900006481323b94 | ||
| DOT-OST-2011-0076-0035 | DOT | None DOT-OST-2011-0076 | Motion of Mesa Airlines, Inc. for Temporary Waiver of Dormancy Conditions | Other | Motion | 2013-05-30T04:00:00Z | 2013 | 5 | 2013-05-30T04:00:00Z | 2024-11-11T20:45:36Z | 1 | 0 | 09000064812e2351 | ||
| DOT-OST-2011-0076-0036 | DOT | None DOT-OST-2011-0076 | Mesa Airlines, Inc. (Polling Letter) | Other | Letter(s) | 2013-05-30T04:00:00Z | 2013 | 5 | 2013-05-30T04:00:00Z | 2024-11-12T05:19:37Z | 1 | 0 | 09000064812e56f6 | ||
| DOT-OST-2011-0076-0034 | DOT | None DOT-OST-2011-0076 | Approval of Motion | Other | Decision | 2013-05-16T04:00:00Z | 2013 | 5 | 2013-05-16T04:00:00Z | 2024-11-12T05:15:44Z | 1 | 0 | 09000064812e747e | ||
| DOT-OST-2011-0076-0031 | DOT | None DOT-OST-2011-0076 | American Eagle Airlines, Inc. (Polling Letter) | Other | Letter(s) | 2013-03-05T05:00:00Z | 2013 | 3 | 2013-03-05T05:00:00Z | 2024-11-07T22:48:30Z | 1 | 0 | 09000064812193a5 | ||
| DOT-OST-2011-0076-0032 | DOT | None DOT-OST-2011-0076 | Approval of Application | Other | Decision | 2013-03-05T05:00:00Z | 2013 | 3 | 2013-03-05T05:00:00Z | 2024-11-07T22:50:38Z | 1 | 0 | 0900006481219664 | ||
| DOT-OST-2011-0076-0033 | DOT | None DOT-OST-2011-0076 | Approval of Application | Other | Decision | 2013-03-05T05:00:00Z | 2013 | 3 | 2013-03-05T05:00:00Z | 2024-11-07T22:47:47Z | 1 | 0 | 090000648121b35f | ||
| DOT-OST-2011-0076-0030 | DOT | None DOT-OST-2011-0076 | American Eagle, Inc. | Other | Letter(s) | 2013-03-01T05:00:00Z | 2013 | 3 | 2013-03-01T05:00:00Z | 2024-11-07T22:48:48Z | 1 | 0 | 0900006481210adb | ||
| DOT-OST-2011-0076-0029 | DOT | None DOT-OST-2011-0076 | Horizon Air Industries, Inc. | Other | Letter(s) | 2013-03-01T05:00:00Z | 2013 | 3 | 2013-03-01T05:00:00Z | 2024-11-07T22:52:38Z | 1 | 0 | 09000064812128ea | ||
| DOT-OST-2011-0076-0028 | DOT | None DOT-OST-2011-0076 | Application of Federal Express Corporation for Renewal of Certificate | Other | Application-SubPartB | 2013-01-23T05:00:00Z | 2013 | 1 | 2013-01-23T05:00:00Z | 2024-11-12T05:13:24Z | 1 | 0 | 09000064811d3610 |
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;