documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2021-0164" and posted_year = 2022 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-2021-0164-0011 | DOT | None DOT-OST-2021-0164 | 2022-6-22 Order Selecting Air Carrier and Setting Rate for Hold-In Period | Other | Order | 2022-07-01T04:00:00Z | 2022 | 7 | 2022-07-01T04:00:00Z | 2024-11-12T23:42:39Z | 1 | 0 | 09000064851aee3b | ||
| DOT-OST-2021-0164-0010 | DOT | None DOT-OST-2021-0164 | Metlakatla Indian Community (Community Comments) | Other | Correspondence | 2022-06-22T04:00:00Z | 2022 | 6 | 2022-06-22T04:00:00Z | 2024-11-12T23:43:14Z | 1 | 0 | 0900006485183b85 | ||
| DOT-OST-2021-0164-0008 | DOT | None DOT-OST-2021-0164 | Request for Community Comments | Other | Request | 2022-04-12T04:00:00Z | 2022 | 4 | 2022-04-12T04:00:00Z | 2024-11-07T00:38:09Z | 1 | 0 | 0900006485011b85 | ||
| DOT-OST-2021-0164-0009 | DOT | None DOT-OST-2021-0164 | Metlakatla Indian Community (Community Comments) | Other | Correspondence | 2022-04-12T04:00:00Z | 2022 | 4 | 2022-04-12T04:00:00Z | 2024-11-12T23:39:56Z | 1 | 0 | 0900006485011bb6 | ||
| DOT-OST-2021-0164-0007 | DOT | None DOT-OST-2021-0164 | Essential Air Service Proposals of Venture Travel, LLC dba Taquan Air Service and Motion to Withdraw Petition for Reconsideration of Order 2022-3-3 | Other | Proposal(s) | 2022-04-07T04:00:00Z | 2022 | 4 | 2022-04-07T04:00:00Z | 2024-11-07T00:36:49Z | 1 | 0 | 090000648500041e | ||
| DOT-OST-2021-0164-0006 | DOT | None DOT-OST-2021-0164 | State of Alaska - Department of Transportation and Public Facilities (Correspondence) | Other | Correspondence | 2022-04-01T04:00:00Z | 2022 | 4 | 2022-04-01T04:00:00Z | 2022-04-01T18:24:05Z | 0 | 0 | 0900006484ff3e39 | ||
| DOT-OST-2021-0164-0005 | DOT | None DOT-OST-2021-0164 | Metlakatla India Community - Petition for Reconsideration of Order 2022-3-3 | Other | Petition(s) | 2022-03-23T04:00:00Z | 2022 | 3 | 2022-03-23T04:00:00Z | 2024-11-12T23:39:07Z | 1 | 0 | 0900006484fd98c8 | ||
| DOT-OST-2021-0164-0004 | DOT | None DOT-OST-2021-0164 | Venture Travel, LLC dba Taquan Air Service - Petition for Reconsideration of Order 2022-3-3 | Other | Petition(s) | 2022-03-18T04:00:00Z | 2022 | 3 | 2022-03-18T04:00:00Z | 2024-11-12T23:37:57Z | 1 | 0 | 0900006484fd1eea | ||
| DOT-OST-2021-0164-0003 | DOT | None DOT-OST-2021-0164 | 2022-3-3 Order Prohibiting Termination of Service and Requesting Proposals | Other | Order | 2022-03-02T05:00:00Z | 2022 | 3 | 2022-03-02T05:00:00Z | 2024-11-07T00:36:59Z | 1 | 0 | 0900006484fb6583 | ||
| DOT-OST-2021-0164-0002 | DOT | None DOT-OST-2021-0164 | Metlakatla - Letters | Other | Letter(s) | 2022-01-18T05:00:00Z | 2022 | 1 | 2022-01-18T05:00:00Z | 2022-01-18T15:54:46Z | 0 | 0 | 0900006484f24e88 |
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;