documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2011-0185" and posted_year = 2024 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, withdrawn, 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-0185-0093 | DOT | None DOT-OST-2011-0185 | 2024-9-6 Order Selecting Air Carrier | Other | Order | 2024-09-24T04:00:00Z | 2024 | 9 | 2024-09-24T04:00:00Z | 2024-11-12T22:47:43Z | 1 | 0 | 090000648677af1d | ||
| DOT-OST-2011-0185-0090 | DOT | None DOT-OST-2011-0185 | Bar Harbor - Hancock County Airport Advisory (Correspondence) | Other | Correspondence | 2024-07-29T04:00:00Z | 2024 | 7 | 2024-07-29T04:00:00Z | 2024-11-12T22:39:20Z | 1 | 0 | 090000648660c101 | ||
| DOT-OST-2011-0185-0091 | DOT | None DOT-OST-2011-0185 | Bar Harbor Chamber of Commerce (Correspondence) | Other | Correspondence | 2024-07-29T04:00:00Z | 2024 | 7 | 2024-07-29T04:00:00Z | 2024-11-12T22:39:20Z | 1 | 0 | 090000648660c102 | ||
| DOT-OST-2011-0185-0089 | DOT | None DOT-OST-2011-0185 | Hancock County Commissioners (Correspondence) | Other | Correspondence | 2024-07-29T04:00:00Z | 2024 | 7 | 2024-07-29T04:00:00Z | 2024-11-12T22:39:20Z | 1 | 0 | 090000648660c100 | ||
| DOT-OST-2011-0185-0088 | DOT | None DOT-OST-2011-0185 | Ellsworth Area Chamber of Commerce (Correspondence) | Other | Correspondence | 2024-07-29T04:00:00Z | 2024 | 7 | 2024-07-29T04:00:00Z | 2024-11-12T22:39:20Z | 1 | 0 | 090000648660b8ff | ||
| DOT-OST-2011-0185-0092 | DOT | None DOT-OST-2011-0185 | County of Hancock supporting Cape Air (Letter of Support) | Other | 2024-07-29T00:00:00Z | 2024 | 7 | 2024-11-12T22:38:52Z | 0 | 1 | 090000648660ca72 | ||||
| DOT-OST-2011-0185-0087 | DOT | None DOT-OST-2011-0185 | JetBlue Airways Corporation (Letter of Support) | Other | Letter(s) in Support | 2024-07-19T04:00:00Z | 2024 | 7 | 2024-07-19T04:00:00Z | 2024-11-12T22:38:50Z | 1 | 0 | 09000064865fa2ea | ||
| DOT-OST-2011-0185-0085 | DOT | None DOT-OST-2011-0185 | Boutique Air (Proposal) | Other | Proposal(s) | 2024-07-02T04:00:00Z | 2024 | 7 | 2024-07-02T04:00:00Z | 2024-11-12T22:37:03Z | 1 | 0 | 09000064865d72ee | ||
| DOT-OST-2011-0185-0086 | DOT | None DOT-OST-2011-0185 | Hyannis Air Service, Inc. dba Cape Air (Proposal) | Other | Proposal(s) | 2024-07-02T04:00:00Z | 2024 | 7 | 2024-07-02T04:00:00Z | 2024-11-12T22:37:03Z | 1 | 0 | 09000064865d72f1 | ||
| DOT-OST-2011-0185-0084 | DOT | None DOT-OST-2011-0185 | 2024-5-30 Order Requesting Proposals | Other | Order | 2024-05-31T04:00:00Z | 2024 | 5 | 2024-05-31T04:00:00Z | 2024-11-12T22:32:23Z | 1 | 0 | 090000648658ee08 |
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;