documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "DOT-OST-1998-3506" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-1998-3506-0041 | DOT | Mesa Air Group, Inc., d/b/a United Express - 90-Day Notice of Suspension - Sheridan, WY DOT-OST-1998-3506 | Honorable(s) Craig Thomas, Michael B. Enzi and Barbara Cubin | Other | Correspondence | 2005-06-09T04:00:00Z | 2005 | 6 | 2005-06-09T04:00:00Z | 2005-06-10T03:59:59Z | 2024-11-07T01:59:57Z | 1 | 0 | 09000064802a54f7 | |
| DOT-OST-1998-3506-0040 | DOT | Mesa Air Group, Inc., d/b/a United Express - 90-Day Notice of Suspension - Sheridan, WY DOT-OST-1998-3506 | 2005-2-16 Order Extending Service Obligation | Other | Order | 2005-02-24T05:00:00Z | 2005 | 2 | 2005-02-24T05:00:00Z | 2005-02-25T04:59:59Z | 2024-11-07T01:59:57Z | 1 | 0 | 09000064802a54f6 | |
| DOT-OST-1998-3506-0039 | DOT | Mesa Air Group, Inc., d/b/a United Express - 90-Day Notice of Suspension - Sheridan, WY DOT-OST-1998-3506 | 2005-2-9 Order | Other | Order | 2005-02-15T05:00:00Z | 2005 | 2 | 2005-02-15T05:00:00Z | 2005-02-16T04:59:59Z | 2024-11-07T01:59:56Z | 1 | 0 | 09000064802a54f4 | |
| DOT-OST-1998-3506-0038 | DOT | Mesa Air Group, Inc., d/b/a United Express - 90-Day Notice of Suspension - Sheridan, WY DOT-OST-1998-3506 | Representative Rosie Berger | Other | Correspondence | 2005-02-14T05:00:00Z | 2005 | 2 | 2005-02-14T05:00:00Z | 2005-02-15T04:59:59Z | 2024-11-07T01:59:35Z | 1 | 0 | 09000064802a54f3 | |
| DOT-OST-1998-3506-0037 | DOT | Mesa Air Group, Inc., d/b/a United Express - 90-Day Notice of Suspension - Sheridan, WY DOT-OST-1998-3506 | 2005-2-2 Order Extending Service Obligation | Other | Order | 2005-02-01T05:00:00Z | 2005 | 2 | 2005-02-01T05:00:00Z | 2005-02-02T04:59:59Z | 2024-11-07T01:59:35Z | 1 | 0 | 09000064802a54f2 | |
| DOT-OST-1998-3506-0036 | DOT | Mesa Air Group, Inc., d/b/a United Express - 90-Day Notice of Suspension - Sheridan, WY DOT-OST-1998-3506 | Answer to Petition for Reconsideration of Order 2005-1-7 | Other | Answer | 2005-01-27T05:00:00Z | 2005 | 1 | 2005-01-27T05:00:00Z | 2005-01-28T04:59:59Z | 2024-11-07T01:59:35Z | 1 | 0 | 09000064802a54f1 | |
| DOT-OST-1998-3506-0035 | DOT | Mesa Air Group, Inc., d/b/a United Express - 90-Day Notice of Suspension - Sheridan, WY DOT-OST-1998-3506 | Petition for Reconsideration of Order 2005-1-7 | Other | Petition for Reconsideration | 2005-01-26T05:00:00Z | 2005 | 1 | 2005-01-26T05:00:00Z | 2005-01-27T04:59:59Z | 2024-11-07T01:59:35Z | 1 | 0 | 09000064802a54f0 | |
| DOT-OST-1998-3506-0034 | DOT | Mesa Air Group, Inc., d/b/a United Express - 90-Day Notice of Suspension - Sheridan, WY DOT-OST-1998-3506 | Ex Parte Communication | Other | Memo, Action Memo or Letter | 2005-01-18T05:00:00Z | 2005 | 1 | 2005-01-18T05:00:00Z | 2005-01-19T04:59:59Z | 2024-11-07T01:59:34Z | 1 | 0 | 09000064802a54ef | |
| DOT-OST-1998-3506-0033 | DOT | Mesa Air Group, Inc., d/b/a United Express - 90-Day Notice of Suspension - Sheridan, WY DOT-OST-1998-3506 | Order 2005-1-7 Essential Air Service at Sheridan, Wyoming | Other | Order | 2005-01-10T05:00:00Z | 2005 | 1 | 2005-01-10T05:00:00Z | 2005-01-11T04:59:59Z | 2024-11-07T01:59:34Z | 1 | 0 | 09000064802a54ee |
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;