documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "DOT-OST-1998-3502" and posted_year = 2003 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-3502-0019 | DOT | Mesa Air Group, Inc. d/b/a United Express - 90-Day Notice of Suspension - Dodge City, Kansas DOT-OST-1998-3502 | 2003-10-28 Order Reselecting Carriers and Establishing New Subsidy Rates | Other | Order | 2003-10-29T05:00:00Z | 2003 | 10 | 2003-10-29T05:00:00Z | 2003-10-30T04:59:59Z | 2024-11-07T01:57:55Z | 1 | 0 | 09000064802a5492 | |
| DOT-OST-1998-3502-0018 | DOT | Mesa Air Group, Inc. d/b/a United Express - 90-Day Notice of Suspension - Dodge City, Kansas DOT-OST-1998-3502 | Dodge City Convention & Visitors Bureau | Other | Correspondence | 2003-10-23T04:00:00Z | 2003 | 10 | 2003-10-23T04:00:00Z | 2003-10-24T03:59:59Z | 2024-11-07T01:57:55Z | 1 | 0 | 09000064802a5491 | |
| DOT-OST-1998-3502-0016 | DOT | Mesa Air Group, Inc. d/b/a United Express - 90-Day Notice of Suspension - Dodge City, Kansas DOT-OST-1998-3502 | Great Lakes Airlines | Other | Certificate of Service | 2003-09-26T04:00:00Z | 2003 | 9 | 2003-09-26T04:00:00Z | 2003-09-27T03:59:59Z | 2024-11-07T01:57:55Z | 1 | 0 | 09000064802a548f | |
| DOT-OST-1998-3502-0015 | DOT | Mesa Air Group, Inc. d/b/a United Express - 90-Day Notice of Suspension - Dodge City, Kansas DOT-OST-1998-3502 | The Honorable Roland Werner | Other | Correspondence | 2003-09-17T04:00:00Z | 2003 | 9 | 2003-09-17T04:00:00Z | 2003-09-18T03:59:59Z | 2024-11-07T01:57:55Z | 1 | 0 | 09000064802a548e | |
| DOT-OST-1998-3502-0013 | DOT | Mesa Air Group, Inc. d/b/a United Express - 90-Day Notice of Suspension - Dodge City, Kansas DOT-OST-1998-3502 | Mesa Air Group, Inc. | Other | Proposal(s) | 2003-09-12T04:00:00Z | 2003 | 9 | 2003-09-12T04:00:00Z | 2003-09-13T03:59:59Z | 2024-11-07T01:57:31Z | 1 | 0 | 09000064802a548c | |
| DOT-OST-1998-3502-0014 | DOT | Mesa Air Group, Inc. d/b/a United Express - 90-Day Notice of Suspension - Dodge City, Kansas DOT-OST-1998-3502 | Great Lakes Aviation, Ltd. | Other | Proposal(s) | 2003-09-11T04:00:00Z | 2003 | 9 | 2003-09-11T04:00:00Z | 2003-09-12T03:59:59Z | 2024-11-07T01:57:31Z | 1 | 0 | 09000064802a548d | |
| DOT-OST-1998-3502-0012 | DOT | Mesa Air Group, Inc. d/b/a United Express - 90-Day Notice of Suspension - Dodge City, Kansas DOT-OST-1998-3502 | 2003-8-10 Order Requesting Proposals and Introducing New Carrier-Selection Procedures | Other | Order | 2003-08-07T04:00:00Z | 2003 | 8 | 2003-08-07T04:00:00Z | 2003-08-08T03:59:59Z | 2024-11-07T01:57:30Z | 1 | 0 | 09000064802a548b |
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;