documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-1997-3005" and posted_year = 2015 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), 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-3005-0092 | DOT | 97-10-10 Order Revising Service Levels and Subisdy Rates, and Tentatively Reselecting Carrier DOT-OST-1997-3005 | City of McCook, Nebraska (Correspondence) | Other | Correspondence | 2015-12-21T05:00:00Z | 2015 | 12 | 2015-12-21T05:00:00Z | 2024-11-11T21:18:35Z | 1 | 0 | 0900006481dbf7df | ||
| DOT-OST-1997-3005-0087 | DOT | 97-10-10 Order Revising Service Levels and Subisdy Rates, and Tentatively Reselecting Carrier DOT-OST-1997-3005 | Proposal of Aerodynamics | Other | Proposal(s) | 2015-11-23T05:00:00Z | 2015 | 11 | 2015-11-23T05:00:00Z | 2024-11-07T23:32:59Z | 1 | 0 | 0900006481d5fc6c | ||
| DOT-OST-1997-3005-0086 | DOT | 97-10-10 Order Revising Service Levels and Subisdy Rates, and Tentatively Reselecting Carrier DOT-OST-1997-3005 | Notice Extending the Deadline for EAS Proposals at McCook, Nebraska - New Due Date: November 16, 2015 | Other | Extension of Time | 2015-11-23T05:00:00Z | 2015 | 11 | 2015-11-23T05:00:00Z | 2024-11-07T23:33:34Z | 1 | 0 | 0900006481d605ce | ||
| DOT-OST-1997-3005-0088 | DOT | 97-10-10 Order Revising Service Levels and Subisdy Rates, and Tentatively Reselecting Carrier DOT-OST-1997-3005 | Proposal of Great Lakes Aviation, Ltd. | Other | Proposal(s) | 2015-11-23T05:00:00Z | 2015 | 11 | 2015-11-23T05:00:00Z | 2024-11-11T21:12:21Z | 1 | 0 | 0900006481d5fc68 | ||
| DOT-OST-1997-3005-0089 | DOT | 97-10-10 Order Revising Service Levels and Subisdy Rates, and Tentatively Reselecting Carrier DOT-OST-1997-3005 | Proposal of Boutique Air | Other | Proposal(s) | 2015-11-23T05:00:00Z | 2015 | 11 | 2015-11-23T05:00:00Z | 2024-11-11T21:11:30Z | 1 | 0 | 0900006481d5fc6a | ||
| DOT-OST-1997-3005-0090 | DOT | 97-10-10 Order Revising Service Levels and Subisdy Rates, and Tentatively Reselecting Carrier DOT-OST-1997-3005 | Request for Comments | Other | Request | 2015-11-23T05:00:00Z | 2015 | 11 | 2015-11-23T05:00:00Z | 2024-11-11T21:11:45Z | 1 | 0 | 0900006481d6050a | ||
| DOT-OST-1997-3005-0085 | DOT | 97-10-10 Order Revising Service Levels and Subisdy Rates, and Tentatively Reselecting Carrier DOT-OST-1997-3005 | Aerodynamics, Inc. (Request for Submission Deadline Extension) | Other | Request for Extension of Time in which to file a document | 2015-11-09T05:00:00Z | 2015 | 11 | 2015-11-09T05:00:00Z | 2024-11-07T23:30:08Z | 1 | 0 | 0900006481d2972b | ||
| DOT-OST-1997-3005-0084 | DOT | 97-10-10 Order Revising Service Levels and Subisdy Rates, and Tentatively Reselecting Carrier DOT-OST-1997-3005 | 2015-9-7 Order Requesting Proposals | Other | Order | 2015-09-14T04:00:00Z | 2015 | 9 | 2015-09-14T04:00:00Z | 2017-03-10T14:40:07Z | 0 | 0 | 0900006481c6d2cf |
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;