documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-1997-2515" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, 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-1997-2515-0087 | DOT | 97-5- 9 Order Tentatively Selecting Carrier and Setting Final Rates - Essential Air Service at Kirksville, Missouri DOT-OST-1997-2515 | 2016-8-14 Order Re-Selecting Airline | Other | Order | 2016-08-09T04:00:00Z | 2016 | 8 | 2016-08-09T04:00:00Z | 2024-11-12T06:13:08Z | 1 | 0 | 0900006482162b68 | ||
| DOT-OST-1997-2515-0086 | DOT | 97-5- 9 Order Tentatively Selecting Carrier and Setting Final Rates - Essential Air Service at Kirksville, Missouri DOT-OST-1997-2515 | City of Kirksville, Missouri (Correspondence) | Other | Correspondence | 2016-07-01T04:00:00Z | 2016 | 7 | 2016-07-01T04:00:00Z | 2024-11-12T06:10:12Z | 1 | 0 | 090000648207edd3 | ||
| DOT-OST-1997-2515-0085 | DOT | 97-5- 9 Order Tentatively Selecting Carrier and Setting Final Rates - Essential Air Service at Kirksville, Missouri DOT-OST-1997-2515 | Request for Comments | Other | Request | 2016-06-06T04:00:00Z | 2016 | 6 | 2016-06-06T04:00:00Z | 2024-11-12T06:06:12Z | 1 | 0 | 0900006482014755 | ||
| DOT-OST-1997-2515-0084 | DOT | 97-5- 9 Order Tentatively Selecting Carrier and Setting Final Rates - Essential Air Service at Kirksville, Missouri DOT-OST-1997-2515 | American Airlines Group, Inc. (Correspondence) | Other | Correspondence | 2016-05-20T04:00:00Z | 2016 | 5 | 2016-05-20T04:00:00Z | 2024-11-07T23:43:28Z | 1 | 0 | 0900006481fe5053 | ||
| DOT-OST-1997-2515-0083 | DOT | 97-5- 9 Order Tentatively Selecting Carrier and Setting Final Rates - Essential Air Service at Kirksville, Missouri DOT-OST-1997-2515 | 2016-5-8 Order Requesting Applications | Other | Order | 2016-05-17T04:00:00Z | 2016 | 5 | 2016-05-17T04:00:00Z | 2024-11-11T21:27:12Z | 1 | 0 | 0900006481fcba3a | ||
| DOT-OST-1997-2515-0082 | DOT | 97-5- 9 Order Tentatively Selecting Carrier and Setting Final Rates - Essential Air Service at Kirksville, Missouri DOT-OST-1997-2515 | Multi-Aero, Inc. d/b/a Air Choice One (Proposal) | Other | Proposal(s) | 2016-05-12T04:00:00Z | 2016 | 5 | 2016-05-12T04:00:00Z | 2024-11-12T06:10:46Z | 1 | 0 | 0900006481fc8e35 | ||
| DOT-OST-1997-2515-0081 | DOT | 97-5- 9 Order Tentatively Selecting Carrier and Setting Final Rates - Essential Air Service at Kirksville, Missouri DOT-OST-1997-2515 | Hyannis Air Service Inc. d/b/a Cape Air (Proposal) | Other | Proposal(s) | 2016-05-12T04:00:00Z | 2016 | 5 | 2016-05-12T04:00:00Z | 2024-11-12T06:10:46Z | 1 | 0 | 0900006481fc8e34 | ||
| DOT-OST-1997-2515-0080 | DOT | 97-5- 9 Order Tentatively Selecting Carrier and Setting Final Rates - Essential Air Service at Kirksville, Missouri DOT-OST-1997-2515 | Boutique Air (Proposal) | Other | Proposal(s) | 2016-05-12T04:00:00Z | 2016 | 5 | 2016-05-12T04:00:00Z | 2024-11-12T06:10:46Z | 1 | 0 | 0900006481fc8e33 | ||
| DOT-OST-1997-2515-0079 | DOT | 97-5- 9 Order Tentatively Selecting Carrier and Setting Final Rates - Essential Air Service at Kirksville, Missouri DOT-OST-1997-2515 | 2016-4-3 Order Request Proposals | Other | Order | 2016-04-07T04:00:00Z | 2016 | 4 | 2016-04-07T04:00:00Z | 2024-11-07T23:43:39Z | 1 | 0 | 0900006481f53dda |
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;