documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2009-0260" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_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-2009-0260-0043 | DOT | None DOT-OST-2009-0260 | Addendum No. 1 | Other | Agreement | 2014-08-28T04:00:00Z | 2014 | 8 | 2024-11-07T23:10:51Z | 1 | 0 | 090000648183c68b | |||
| DOT-OST-2009-0260-0042 | DOT | None DOT-OST-2009-0260 | Agreement by Erickson, Kawerak, and DOT for ATNEP Compensation for Air Transportation at Diomede, Alaska | Other | Agreement | 2014-07-27T04:00:00Z | 2014 | 7 | 2014-07-27T04:00:00Z | 2024-11-12T05:28:20Z | 1 | 0 | 09000064817ceae0 | ||
| DOT-OST-2009-0260-0040 | DOT | None DOT-OST-2009-0260 | 2014-7-4 Order | Other | Order | 2014-07-08T04:00:00Z | 2014 | 7 | 2014-07-08T04:00:00Z | 2014-07-09T03:59:59Z | 2024-11-12T05:27:06Z | 1 | 0 | 09000064817975c6 | |
| DOT-OST-2009-0260-0041 | DOT | None DOT-OST-2009-0260 | Kawerak, Inc. (Comments) | Other | Correspondence | 2014-07-08T04:00:00Z | 2014 | 7 | 2014-07-08T04:00:00Z | 2024-11-12T05:26:31Z | 1 | 0 | 0900006481776267 | ||
| DOT-OST-2009-0260-0039 | DOT | None DOT-OST-2009-0260 | The State of Alaska, Department of Transportation and Public Facilities (Comments) | Other | Correspondence | 2014-07-02T04:00:00Z | 2014 | 7 | 2014-07-02T04:00:00Z | 2024-11-11T20:51:06Z | 1 | 0 | 0900006481765bf8 | ||
| DOT-OST-2009-0260-0038 | DOT | None DOT-OST-2009-0260 | Erickson's Proposal to Provide air Service to Little Diomede, Alaska | Other | Proposal(s) | 2014-06-23T04:00:00Z | 2014 | 6 | 2014-06-23T04:00:00Z | 2024-11-11T20:50:50Z | 1 | 0 | 09000064817469a1 | ||
| DOT-OST-2009-0260-0037 | DOT | None DOT-OST-2009-0260 | Department of Commerce, Community, and Economic Development, State of Alaska (Correspondence) | Other | Correspondence | 2014-06-23T04:00:00Z | 2014 | 6 | 2024-11-11T20:52:45Z | 1 | 0 | 09000064817462be | |||
| DOT-OST-2009-0260-0036 | DOT | None DOT-OST-2009-0260 | Department of Commerce, Community and Economic Development (Correspondence) | Other | Correspondence | 2014-03-26T04:00:00Z | 2014 | 3 | 2014-03-26T04:00:00Z | 2024-11-11T20:50:26Z | 1 | 0 | 0900006481681d24 | ||
| DOT-OST-2009-0260-0035 | DOT | None DOT-OST-2009-0260 | Erickson Helicopters, Inc. (Name Change) | Other | Correspondence | 2014-03-10T04:00:00Z | 2014 | 3 | 2014-03-10T04:00:00Z | 2024-11-12T05:25:21Z | 1 | 0 | 090000648160c563 | ||
| DOT-OST-2009-0260-0034 | DOT | None DOT-OST-2009-0260 | Erickson Air-Crane Incorporated's Up Coming Name Change (Correspondence) | Other | Correspondence | 2014-02-03T05:00:00Z | 2014 | 2 | 2014-02-03T05:00:00Z | 2024-11-07T23:03:01Z | 1 | 0 | 090000648153a3eb |
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;