documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2010-0072" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-2010-0072-0012 | DOT | None DOT-OST-2010-0072 | Application for Renewal of Exemptions | Other | Application-Other | 2020-07-09T04:00:00Z | 2020 | 7 | 2020-07-09T04:00:00Z | 2024-11-12T23:21:56Z | 1 | 0 | 09000064847378b5 | ||
| DOT-OST-2010-0072-0011 | DOT | None DOT-OST-2010-0072 | Notice of Action Taken re: Gol Linhas Aereas S.A. f/k/a VRG Linhas Aereas S.A. | Other | Decision | 2018-07-17T04:00:00Z | 2018 | 7 | 2018-07-17T04:00:00Z | 2024-11-07T23:54:51Z | 1 | 0 | 09000064835139ef | ||
| DOT-OST-2010-0072-0010 | DOT | None DOT-OST-2010-0072 | US Airways - Withdrawal of Objection | Other | Withdrawal | 2017-12-22T05:00:00Z | 2017 | 12 | 2017-12-22T05:00:00Z | 2024-11-07T01:15:55Z | 1 | 0 | 0900006482d5aea2 | ||
| DOT-OST-2010-0072-0009 | DOT | None DOT-OST-2010-0072 | Supplement No. One to Application for Amendment and Reissuance of Exemptions and Statement of Authorization | Other | Supplement (SUP) | 2017-03-30T04:00:00Z | 2017 | 3 | 2017-03-30T04:00:00Z | 2024-11-07T00:56:22Z | 1 | 0 | 09000064825327df | ||
| DOT-OST-2010-0072-0008 | DOT | None DOT-OST-2010-0072 | Application for Amendment and Reissuance of Exemptions and Statement of Authorization | Other | Application-Other | 2017-02-01T05:00:00Z | 2017 | 2 | 2017-02-01T05:00:00Z | 2024-11-11T21:33:30Z | 1 | 0 | 09000064824a5322 | ||
| DOT-OST-2010-0072-0007 | DOT | None DOT-OST-2010-0072 | Answer of VRG Linhas Aereas S.A. d/b/a Gol to Objection of US Airways to Application for Renewal of Exemption | Other | Answer | 2012-09-05T04:00:00Z | 2012 | 9 | 2012-09-05T04:00:00Z | 2024-11-11T20:42:54Z | 1 | 0 | 09000064811039e1 | ||
| DOT-OST-2010-0072-0006 | DOT | None DOT-OST-2010-0072 | Objection of US Airways, Inc. | Other | Objection(s) | 2012-08-28T04:00:00Z | 2012 | 8 | 2012-08-28T04:00:00Z | 2013-07-28T00:33:08Z | 0 | 0 | 09000064810f4afb | ||
| DOT-OST-2010-0072-0005 | DOT | None DOT-OST-2010-0072 | Application for Renewal of Exemption | Other | Application-Other | 2012-08-14T04:00:00Z | 2012 | 8 | 2012-08-14T04:00:00Z | 2012-08-28T17:36:41Z | 0 | 0 | 09000064810cc115 | ||
| DOT-OST-2010-0072-0004 | DOT | None DOT-OST-2010-0072 | Notice of Action Taken re: VRG Linhas Aereas S.A. d/b/a GOL | Other | Decision | 2011-08-26T04:00:00Z | 2011 | 8 | 2011-08-26T04:00:00Z | 2024-11-07T22:38:33Z | 1 | 0 | 0900006480ef4b6e | ||
| DOT-OST-2010-0072-0003 | DOT | None DOT-OST-2010-0072 | VRG Linhas Aereas S.A. d/b/a Gol | Other | Correspondence | 2011-05-25T04:00:00Z | 2011 | 5 | 2011-05-25T04:00:00Z | 2013-07-27T23:53:58Z | 0 | 0 | 0900006480e315b2 | ||
| DOT-OST-2010-0072-0002 | DOT | None DOT-OST-2010-0072 | Notice of Action Taken re: VRG Linhas Aereas S.A. d/b/a GOL | Other | Notice | 2010-06-16T04:00:00Z | 2010 | 6 | 2010-06-16T04:00:00Z | 2024-11-07T22:16:38Z | 1 | 0 | 0900006480b0388a | ||
| DOT-OST-2010-0072-0001 | DOT | None DOT-OST-2010-0072 | Application for Exemption | Other | Application-Other | 2010-03-24T04:00:00Z | 2010 | 3 | 2010-03-24T04:00:00Z | 2024-11-12T04:51:15Z | 1 | 0 | 0900006480ac442d |
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;