documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "DOT-OST-2003-14783" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2003-14783-0200 | DOT | None DOT-OST-2003-14783 | City of Plattsburgh (Comments) | Other | Correspondence | 2014-06-11T04:00:00Z | 2014 | 6 | 2024-11-12T05:26:03Z | 1 | 0 | 090000648172d5e9 | |||
| DOT-OST-2003-14783-0199 | DOT | None DOT-OST-2003-14783 | 2014-6-4 Order Re-Selecting Air Carrier | Other | Order | 2014-06-06T04:00:00Z | 2014 | 6 | 2014-06-06T04:00:00Z | 2014-06-06T21:07:30Z | 0 | 0 | 090000648172dca8 | ||
| DOT-OST-2003-14783-0198 | DOT | None DOT-OST-2003-14783 | 14 Letters in Support of the EAS Proposal of Peninsula Airways, Inc. | Other | Correspondence | 2014-04-09T04:00:00Z | 2014 | 4 | 2014-04-09T04:00:00Z | 2024-11-11T20:49:46Z | 1 | 0 | 090000648169ab15 | ||
| DOT-OST-2003-14783-0197 | DOT | None DOT-OST-2003-14783 | Honorable Angus S. King, Jr. (Comments) | Other | Correspondence | 2014-04-07T04:00:00Z | 2014 | 4 | 2014-04-07T04:00:00Z | 2024-11-07T23:06:57Z | 1 | 0 | 0900006481698ab1 | ||
| DOT-OST-2003-14783-0196 | DOT | None DOT-OST-2003-14783 | County of Clinton Industrial Development Agency (Comments) | Other | Correspondence | 2014-04-07T04:00:00Z | 2014 | 4 | 2014-04-07T04:00:00Z | 2024-11-07T23:07:40Z | 1 | 0 | 0900006481698341 | ||
| DOT-OST-2003-14783-0195 | DOT | None DOT-OST-2003-14783 | County of Clinton Industrial Development Agency (Comments) | Other | Correspondence | 2014-03-31T04:00:00Z | 2014 | 3 | 2014-03-31T04:00:00Z | 2024-11-11T20:50:17Z | 1 | 0 | 090000648168bb73 | ||
| DOT-OST-2003-14783-0194 | DOT | None DOT-OST-2003-14783 | Clinton County (Comments) | Other | Correspondence | 2014-03-31T04:00:00Z | 2014 | 3 | 2014-03-31T04:00:00Z | 2024-11-11T20:50:16Z | 1 | 0 | 090000648168bb72 | ||
| DOT-OST-2003-14783-0192 | DOT | None DOT-OST-2003-14783 | Proposal of Peninsula Airways, Inc. to Provide Essential Air Service at Presque Isle, Maine, and Plattsburgh, New York | Other | Proposal(s) | 2014-03-18T04:00:00Z | 2014 | 3 | 2014-03-18T04:00:00Z | 2024-11-07T23:04:58Z | 1 | 0 | 0900006481668b8b | ||
| DOT-OST-2003-14783-0193 | DOT | None DOT-OST-2003-14783 | Request for Comments | Other | Letter(s) | 2014-03-18T04:00:00Z | 2014 | 3 | 2014-03-18T04:00:00Z | 2024-11-11T20:50:12Z | 1 | 0 | 090000648166b68d | ||
| DOT-OST-2003-14783-0191 | DOT | None DOT-OST-2003-14783 | Peninsula Airways, Inc. (Request for an Extension) | Other | Letter(s) | 2014-03-03T05:00:00Z | 2014 | 3 | 2014-03-03T05:00:00Z | 2024-11-12T05:25:31Z | 1 | 0 | 09000064815f3f88 | ||
| DOT-OST-2003-14783-0190 | DOT | None DOT-OST-2003-14783 | 2014-1-21 Order Requesting Proposals | Other | Order | 2014-01-31T05:00:00Z | 2014 | 1 | 2014-01-31T05:00:00Z | 2024-11-07T23:03:01Z | 1 | 0 | 090000648153b94b |
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;