documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOT-OST-2005-20735" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2005-20735-0088 | DOT | None DOT-OST-2005-20735 | Order 2012-6-25 Extending Service Obligation | Other | Order | 2012-07-02T04:00:00Z | 2012 | 7 | 2012-07-02T04:00:00Z | 2013-04-11T17:12:37Z | 0 | 0 | 09000064810758b0 | ||
| DOT-OST-2005-20735-0087 | DOT | None DOT-OST-2005-20735 | 2012-4-32 Order Selecting Carrier | Other | Order | 2012-04-30T04:00:00Z | 2012 | 4 | 2012-04-30T04:00:00Z | 2013-04-11T17:15:48Z | 0 | 0 | 0900006481000cf3 | ||
| DOT-OST-2005-20735-0086 | DOT | None DOT-OST-2005-20735 | Morgantown Municipal Airport | Other | Correspondence | 2012-04-18T04:00:00Z | 2012 | 4 | 2024-11-12T04:54:47Z | 1 | 0 | 0900006480ff175f | |||
| DOT-OST-2005-20735-0085 | DOT | None DOT-OST-2005-20735 | Request for Comments | Other | Letter(s) | 2012-04-10T04:00:00Z | 2012 | 4 | 2012-04-10T04:00:00Z | 2014-02-28T18:26:03Z | 0 | 0 | 0900006480fecd9d | ||
| DOT-OST-2005-20735-0084 | DOT | None DOT-OST-2005-20735 | Silver Airways Proposal to Provide Subsidized Air Service to the Communities of Beckley, Clarksburg/Fairmont and Morgantown, West Virginia | Other | Proposal(s) | 2012-04-05T04:00:00Z | 2012 | 4 | 2012-04-05T04:00:00Z | 2024-11-07T22:24:34Z | 1 | 0 | 0900006480fea0cf | ||
| DOT-OST-2005-20735-0083 | DOT | None DOT-OST-2005-20735 | Order 2012-3-14 Prohibiting Suspension of Service And Requesting Proposals | Other | Order | 2012-03-23T04:00:00Z | 2012 | 3 | 2012-03-23T04:00:00Z | 2024-11-07T22:04:43Z | 1 | 0 | 0900006480fdfdc0 | ||
| DOT-OST-2005-20735-0082 | DOT | None DOT-OST-2005-20735 | Ninety-Day Notice Of Termination Of Service | Other | Correspondence | 2012-03-13T04:00:00Z | 2012 | 3 | 2012-03-13T04:00:00Z | 2024-11-12T04:38:04Z | 1 | 0 | 0900006480fd5f39 | ||
| DOT-OST-2005-20735-0081 | DOT | None DOT-OST-2005-20735 | 2012-2-16 Order Requesting Proposals | Other | Order | 2012-02-23T05:00:00Z | 2012 | 2 | 2012-02-23T05:00:00Z | 2024-11-07T22:01:25Z | 1 | 0 | 0900006480fbf1f7 |
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;