documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2011-0134" 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, last_modified, 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-2011-0134-0032 | DOT | None DOT-OST-2011-0134 | 2015-12-15 Order Re-Selecting Air Carrier | Other | Order | 2015-12-22T05:00:00Z | 2015 | 12 | 2015-12-22T05:00:00Z | 2024-11-11T21:16:59Z | 1 | 0 | 0900006481dc590a | ||
| DOT-OST-2011-0134-0030 | DOT | None DOT-OST-2011-0134 | Letters of Support (4) | Other | Letter(s) in Support | 2015-11-13T05:00:00Z | 2015 | 11 | 2015-11-13T05:00:00Z | 2015-11-13T16:31:31Z | 0 | 0 | 0900006481d3a99b | ||
| DOT-OST-2011-0134-0029 | DOT | None DOT-OST-2011-0134 | City of Bemidji and Bemidji Regional Airport Authority | Other | Correspondence | 2015-11-03T05:00:00Z | 2015 | 11 | 2015-11-03T05:00:00Z | 2015-11-03T16:43:35Z | 0 | 0 | 0900006481d07ce6 | ||
| DOT-OST-2011-0134-0028 | DOT | None DOT-OST-2011-0134 | Request for Comments | Other | Request | 2015-10-23T04:00:00Z | 2015 | 10 | 2015-10-23T04:00:00Z | 2024-11-12T05:47:06Z | 1 | 0 | 0900006481ce9739 | ||
| DOT-OST-2011-0134-0027 | DOT | None DOT-OST-2011-0134 | Visit Bemidji (Correspondence) | Other | Correspondence | 2015-10-02T04:00:00Z | 2015 | 10 | 2015-10-02T04:00:00Z | 2024-11-12T05:48:34Z | 1 | 0 | 0900006481cab706 | ||
| DOT-OST-2011-0134-0026 | DOT | None DOT-OST-2011-0134 | Proposal of SkyWest Airlines | Other | Proposal(s) | 2015-09-24T04:00:00Z | 2015 | 9 | 2015-09-24T04:00:00Z | 2024-11-07T23:31:41Z | 1 | 0 | 0900006481c9352b | ||
| DOT-OST-2011-0134-0024 | DOT | None DOT-OST-2011-0134 | Douglas Leif (Letter of Support) | Other | Correspondence | 2015-09-18T04:00:00Z | 2015 | 9 | 2015-09-18T04:00:00Z | 2024-11-07T22:09:55Z | 1 | 0 | 0900006481c7c65c | ||
| DOT-OST-2011-0134-0025 | DOT | None DOT-OST-2011-0134 | Susan Nelson (Comment) | Other | Correspondence | 2015-09-18T04:00:00Z | 2015 | 9 | 2015-09-18T04:00:00Z | 2024-11-07T22:09:55Z | 1 | 0 | 0900006481c7c65f | ||
| DOT-OST-2011-0134-0023 | DOT | None DOT-OST-2011-0134 | 2015-8-22 Order Requesting Proposals | Other | Order | 2015-08-21T04:00:00Z | 2015 | 8 | 2015-08-21T04:00:00Z | 2024-11-12T05:37:20Z | 1 | 0 | 0900006481c31982 |
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;