documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2009-0116" and posted_year = 2012 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-2009-0116-0018 | DOT | None DOT-OST-2009-0116 | Key Lime Air Corp. (Additional Information) | Other | Letter(s) | 2012-12-12T05:00:00Z | 2012 | 12 | 2012-12-12T05:00:00Z | 2024-11-12T05:10:26Z | 1 | 0 | 0900006481184ffd | ||
| DOT-OST-2009-0116-0017 | DOT | None DOT-OST-2009-0116 | Supplement No. 5 to Application of Key Lime Air Corp. for a Commuter Air Carrier Authorization | Supporting & Related Material | Supplement | 2012-12-05T05:00:00Z | 2012 | 12 | 2024-11-12T05:11:28Z | 0 | 0 | 09000064811805a6 | |||
| DOT-OST-2009-0116-0016 | DOT | None DOT-OST-2009-0116 | 2012-8-19 Final Order (Erratum) | Other | Order | 2012-08-17T04:00:00Z | 2012 | 8 | 2012-08-17T04:00:00Z | 2013-07-28T00:32:23Z | 0 | 0 | 09000064810e240a | ||
| DOT-OST-2009-0116-0015 | DOT | None DOT-OST-2009-0116 | 2012-8-11 Final Order | Other | Order | 2012-08-07T04:00:00Z | 2012 | 8 | 2012-08-07T04:00:00Z | 2024-11-11T20:40:36Z | 1 | 0 | 09000064810c4d08 | ||
| DOT-OST-2009-0116-0014 | DOT | None DOT-OST-2009-0116 | Commuter Authority Applications: Key Lime Air Corp. | Notice | Notice of Intent | 2012-08-01T04:00:00Z | 2012 | 8 | 2012-08-01T04:00:00Z | 2012-08-01T13:39:56Z | 2012-18741 | 0 | 0 | 09000064810bc3b9 | |
| DOT-OST-2009-0116-0013 | DOT | None DOT-OST-2009-0116 | Order 2012-7-5 To Show Cause Proposing Issuance Of A Commuter Air Carrier Authority | Other | Order | 2012-07-06T04:00:00Z | 2012 | 7 | 2012-07-06T04:00:00Z | 2024-11-07T22:43:35Z | 1 | 0 | 090000648107e114 | ||
| DOT-OST-2009-0116-0012 | DOT | None DOT-OST-2009-0116 | Key Lime Air Corp. (Additional Information) | Other | Additional Information | 2012-04-03T04:00:00Z | 2012 | 4 | 2012-04-03T04:00:00Z | 2024-11-12T05:01:25Z | 1 | 0 | 0900006480fe406d | ||
| DOT-OST-2009-0116-0011 | DOT | None DOT-OST-2009-0116 | Supplement No. 4 To Application of Key Lime Air Corp. For A Commuter Air Carrier Authorization | Supporting & Related Material | Supplement | 2012-03-26T04:00:00Z | 2012 | 3 | 2013-03-06T03:55:31Z | 0 | 0 | 0900006480fdd20b | |||
| DOT-OST-2009-0116-0010 | DOT | None DOT-OST-2009-0116 | Request for Additional Information | Other | Correspondence | 2012-03-08T05:00:00Z | 2012 | 3 | 2012-03-08T05:00:00Z | 2013-03-06T03:55:13Z | 0 | 0 | 0900006480fd1800 |
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;