documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-2002-12014" and posted_year = 2002 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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-2002-12014-0008 | DOT | None DOT-OST-2002-12014 | 2002-11-15 Order Extending Service Obligation | Other | Order | 2002-11-25T05:00:00Z | 2002 | 11 | 2002-11-25T05:00:00Z | 2002-11-26T04:59:59Z | 2024-11-11T22:35:59Z | 1 | 0 | 09000064802be4fd | |
| DOT-OST-2002-12014-0007 | DOT | None DOT-OST-2002-12014 | Proposal to Provide Essential Air Service at Excursion Inlet, Alaska | Other | Proposal(s) | 2002-11-14T05:00:00Z | 2002 | 11 | 2002-11-14T05:00:00Z | 2002-11-15T04:59:59Z | 2024-11-11T22:35:59Z | 1 | 0 | 09000064802be4fc | |
| DOT-OST-2002-12014-0006 | DOT | None DOT-OST-2002-12014 | 2002-10-16 Order Extending Service Obligation | Other | Order | 2002-10-10T04:00:00Z | 2002 | 10 | 2002-10-10T04:00:00Z | 2002-10-11T03:59:59Z | 2024-11-11T22:36:19Z | 1 | 0 | 09000064802be4fb | |
| DOT-OST-2002-12014-0005-0001 | DOT | None DOT-OST-2002-12014 | 2002-9-21 Order Extending Service Obligation | Other | Order | 2002-09-26T04:00:00Z | 2002 | 9 | 2002-09-26T04:00:00Z | 2002-09-27T03:59:59Z | 2024-11-11T22:35:40Z | 1 | 0 | 09000064802be4f9 | |
| DOT-OST-2002-12014-0005-0002 | DOT | None DOT-OST-2002-12014 | 2002-9-21 Order Extending Service Obligation | Other | Order | 2002-09-26T04:00:00Z | 2002 | 9 | 2002-09-26T04:00:00Z | 2002-09-27T03:59:59Z | 2024-11-11T22:35:41Z | 1 | 0 | 09000064802be4fa | |
| DOT-OST-2002-12014-0004 | DOT | None DOT-OST-2002-12014 | Order 2002-8-23 Order Extending Service Obligation | Other | Order | 2002-08-23T04:00:00Z | 2002 | 8 | 2002-08-23T04:00:00Z | 2002-08-24T03:59:59Z | 2024-11-11T22:35:40Z | 1 | 0 | 09000064802be4f8 | |
| DOT-OST-2002-12014-0003 | DOT | None DOT-OST-2002-12014 | 2002-7-41 Order Extending Service Obligation | Other | Order | 2002-07-31T04:00:00Z | 2002 | 7 | 2002-07-31T04:00:00Z | 2002-08-01T03:59:59Z | 2024-11-11T22:35:40Z | 1 | 0 | 09000064802be4f7 | |
| DOT-OST-2002-12014-0002 | DOT | None DOT-OST-2002-12014 | 2002-7-4 Order Prohibiting Suspension of Service and Requesting Proposals | Other | Order | 2002-07-02T04:00:00Z | 2002 | 7 | 2002-07-02T04:00:00Z | 2002-07-03T03:59:59Z | 2024-11-11T22:35:23Z | 1 | 0 | 09000064802be4ed | |
| DOT-OST-2002-12014-0001 | DOT | None DOT-OST-2002-12014 | 90-Day Notice of L.A.B. Flying, Inc. of Intent to Terminate Essential Air Service at Excursion Inlet, Alaska | Notice | Notice | 2002-04-01T05:00:00Z | 2002 | 4 | 2002-04-01T05:00:00Z | 2002-04-02T04:59:59Z | 2024-11-11T22:35:21Z | 1 | 0 | 09000064802be4e2 |
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;