documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "DOT-OST-1997-2827" and posted_year = 2019 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-1997-2827-0199 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Service Program-Wide re: Essential Air Service at Moab, Utah DOT-OST-1997-2827 | Request for Community Comments | Other | Request | 2019-12-10T05:00:00Z | 2019 | 12 | 2019-12-10T05:00:00Z | 2024-11-12T23:13:52Z | 1 | 0 | 09000064841fe20c | ||
| DOT-OST-1997-2827-0200 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Service Program-Wide re: Essential Air Service at Moab, Utah DOT-OST-1997-2827 | SkyWest Airlines (Proposal) | Other | Proposal(s) | 2019-12-10T05:00:00Z | 2019 | 12 | 2019-12-10T05:00:00Z | 2024-11-12T23:13:52Z | 1 | 0 | 09000064841fe448 | ||
| DOT-OST-1997-2827-0198 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Service Program-Wide re: Essential Air Service at Moab, Utah DOT-OST-1997-2827 | 2019-11-4 Order Requesting Proposals | Other | Order | 2019-11-07T05:00:00Z | 2019 | 11 | 2019-11-07T05:00:00Z | 2024-11-12T23:12:08Z | 1 | 0 | 090000648412aadc | ||
| DOT-OST-1997-2827-0197 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Service Program-Wide re: Essential Air Service at Moab, Utah DOT-OST-1997-2827 | 2019-6-10 Order Approving Request to Waive Certain Essential Air Service Requirements at 49 USC Section 41732, and Approving Alternate Service Pattern | Other | Order | 2019-06-17T04:00:00Z | 2019 | 6 | 2019-06-17T04:00:00Z | 2024-11-12T23:02:57Z | 1 | 0 | 0900006483d1b1ba | ||
| DOT-OST-1997-2827-0196 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Service Program-Wide re: Essential Air Service at Moab, Utah DOT-OST-1997-2827 | Grand County Council and the Grand County Airport Board (Correspondence) | Other | Correspondence | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T04:00:00Z | 2024-11-12T23:02:39Z | 1 | 0 | 0900006483cf7340 | ||
| DOT-OST-1997-2827-0195 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Service Program-Wide re: Essential Air Service at Moab, Utah DOT-OST-1997-2827 | SkyWest Airlines (Seasonal Schedule Adjustment) | Other | Correspondence | 2019-06-05T04:00:00Z | 2019 | 6 | 2019-06-05T04:00:00Z | 2024-11-12T23:03:18Z | 1 | 0 | 0900006483cecd07 | ||
| DOT-OST-1997-2827-0194 | DOT | 97-8-14 Order Authorizing Subsidy for Increased Service Program-Wide re: Essential Air Service at Moab, Utah DOT-OST-1997-2827 | SkyWest Airlines (Seasonal Schedule Adjustment for Canyonlands Field Airport, Utah) | Other | 2019-05-09T00:00:00Z | 2019 | 5 | 2024-11-12T23:00:04Z | 0 | 1 | 0900006483c4f1ec |
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;