documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2003-14822" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-2003-14822-0045 | DOT | None DOT-OST-2003-14822 | U.S. DOT/OST - Memorandum re: Essential Air Service at Lebanon, New Hampshire | Other | Memo, Action Memo or Letter | 2008-11-20T05:00:00Z | 2008 | 11 | 2008-11-20T05:00:00Z | 2013-07-27T22:30:52Z | 0 | 0 | 09000064807b2701 | ||
| DOT-OST-2003-14822-0044 | DOT | None DOT-OST-2003-14822 | 2008-7-27 Order Selecting Carrier and Setting Final Subsidy Rates | Other | Order | 2008-07-25T04:00:00Z | 2008 | 7 | 2008-07-25T04:00:00Z | 2024-11-12T04:20:34Z | 1 | 0 | 0900006480695ed8 | ||
| DOT-OST-2003-14822-0043 | DOT | None DOT-OST-2003-14822 | City of Lebanon, NH | Other | Correspondence | 2008-07-23T04:00:00Z | 2008 | 7 | 2008-07-23T04:00:00Z | 2013-07-27T22:19:24Z | 0 | 0 | 0900006480691335 | ||
| DOT-OST-2003-14822-0042 | DOT | None DOT-OST-2003-14822 | City of Lebanon City Council | Other | 2008-07-22T00:00:00Z | 2008 | 7 | 2024-11-12T04:23:45Z | 0 | 1 | 090000648068ae71 | ||||
| DOT-OST-2003-14822-0041 | DOT | None DOT-OST-2003-14822 | Community Comments (David Gobin) | Other | Other | 2008-07-11T04:00:00Z | 2008 | 7 | 2008-07-11T04:00:00Z | 2024-11-12T04:16:20Z | 1 | 0 | 09000064806661fb | ||
| DOT-OST-2003-14822-0040 | DOT | None DOT-OST-2003-14822 | Dennis Devany | Other | Other | 2008-06-20T04:00:00Z | 2008 | 6 | 2008-06-20T04:00:00Z | 2013-07-27T22:17:04Z | 0 | 0 | 0900006480632112 | ||
| DOT-OST-2003-14822-0039 | DOT | None DOT-OST-2003-14822 | Proposal of Colgan Air, Inc. to Provide Subsidized Essential Air Service for The Community of Lebanon, New Hampshire | Other | Proposal(s) | 2008-06-02T04:00:00Z | 2008 | 6 | 2008-06-02T04:00:00Z | 2008-06-02T14:00:09Z | 0 | 0 | 090000648060c219 | ||
| DOT-OST-2003-14822-0038 | DOT | None DOT-OST-2003-14822 | Proposal of Colgan Air, Inc. to Provide Subsidized Essential Air Service for The Community of Lebanon, New Hampshire | Other | 2008-06-02T00:00:00Z | 2008 | 6 | 2008-06-02T14:01:41Z | 0 | 1 | 0900006480608371 | ||||
| DOT-OST-2003-14822-0037 | DOT | None DOT-OST-2003-14822 | Proposal of Hyannis Air Service Inc., dba Cape Air | Other | Proposal(s) | 2008-05-30T04:00:00Z | 2008 | 5 | 2008-05-30T04:00:00Z | 2013-08-11T02:53:58Z | 0 | 0 | 0900006480606564 | ||
| DOT-OST-2003-14822-0036 | DOT | None DOT-OST-2003-14822 | 2008-4-40 Order Requesting Proposals | Other | Order | 2008-04-28T04:00:00Z | 2008 | 4 | 2008-04-28T04:00:00Z | 2024-11-12T04:13:58Z | 1 | 0 | 09000064805386ac |
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;