documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "DOT-OST-2000-6773" and posted_year = 2018 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), 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-2000-6773-0276 | DOT | Pacific Wings - 30-Day Notice to Terminate Essential Air Service at Kalaupapa, Molokai, Hawaii DOT-OST-2000-6773 | 2018-3-3 Order Terminating Carrier-Selection Case | Other | Order | 2018-03-16T04:00:00Z | 2018 | 3 | 2018-03-16T04:00:00Z | 2024-11-07T01:24:54Z | 1 | 0 | 090000648301e6d5 | ||
| DOT-OST-2000-6773-0275 | DOT | Pacific Wings - 30-Day Notice to Terminate Essential Air Service at Kalaupapa, Molokai, Hawaii DOT-OST-2000-6773 | Ex Parte Correspondence to Honorable Mazie Hirono | Other | Correspondence | 2018-03-16T04:00:00Z | 2018 | 3 | 2018-03-16T04:00:00Z | 2024-11-07T01:23:55Z | 1 | 0 | 090000648301e2ac | ||
| DOT-OST-2000-6773-0274 | DOT | Pacific Wings - 30-Day Notice to Terminate Essential Air Service at Kalaupapa, Molokai, Hawaii DOT-OST-2000-6773 | Ka'Ohana O Kalaupapa (Correspondence) | Other | Correspondence | 2018-03-12T04:00:00Z | 2018 | 3 | 2018-03-12T04:00:00Z | 2024-11-07T01:24:13Z | 1 | 0 | 090000648300189a | ||
| DOT-OST-2000-6773-0273 | DOT | Pacific Wings - 30-Day Notice to Terminate Essential Air Service at Kalaupapa, Molokai, Hawaii DOT-OST-2000-6773 | Kalaupapa National Historic Park, Department of Health, and Patients of Kalaupapa (Correspondence) | Other | Correspondence | 2018-02-01T05:00:00Z | 2018 | 2 | 2018-02-01T05:00:00Z | 2024-11-07T01:20:20Z | 1 | 0 | 0900006482e8e99c | ||
| DOT-OST-2000-6773-0272 | DOT | Pacific Wings - 30-Day Notice to Terminate Essential Air Service at Kalaupapa, Molokai, Hawaii DOT-OST-2000-6773 | Mokulele Airlines (Correspondence) | Other | Correspondence | 2018-01-23T05:00:00Z | 2018 | 1 | 2018-01-23T05:00:00Z | 2024-11-07T01:20:12Z | 1 | 0 | 0900006482e4f7aa | ||
| DOT-OST-2000-6773-0271 | DOT | Pacific Wings - 30-Day Notice to Terminate Essential Air Service at Kalaupapa, Molokai, Hawaii DOT-OST-2000-6773 | United States Department of the Interior - National Park Service - Kalaupapa National Historical Park (Correspondence) | Other | Correspondence | 2018-01-16T05:00:00Z | 2018 | 1 | 2018-01-16T05:00:00Z | 2024-11-07T01:16:36Z | 1 | 0 | 0900006482e0c59f |
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;