documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "DOT-OST-1995-736" and posted_year = 1994 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-1995-736-0005 | DOT | America West Airlines, Inc. - Exemption/Renewal - Phoenix, Arizona-Mazatlan, Mexico DOT-OST-1995-736 | City of Phoenix - Motion to file late Answer | Other | Motion | 1994-10-28T04:00:00Z | 1994 | 10 | 1994-10-28T04:00:00Z | 1994-10-29T03:59:59Z | 2024-11-07T01:47:28Z | 1 | 0 | 09000064802a1c40 | |
| DOT-OST-1995-736-0006 | DOT | America West Airlines, Inc. - Exemption/Renewal - Phoenix, Arizona-Mazatlan, Mexico DOT-OST-1995-736 | Notice of Action Taken Re: America West Airlines, Inc. | Notice | Notice | 1994-10-24T04:00:00Z | 1994 | 10 | 1994-10-24T04:00:00Z | 1994-10-25T03:59:59Z | 2024-11-07T01:47:28Z | 1 | 0 | 09000064802a1c41 | |
| DOT-OST-1995-736-0003 | DOT | America West Airlines, Inc. - Exemption/Renewal - Phoenix, Arizona-Mazatlan, Mexico DOT-OST-1995-736 | City of Phoenix - Motion to File Late Answer | Other | Motion | 1994-10-21T04:00:00Z | 1994 | 10 | 1994-10-21T04:00:00Z | 1994-10-22T03:59:59Z | 2024-11-07T01:46:32Z | 1 | 0 | 09000064802a1c31 | |
| DOT-OST-1995-736-0004 | DOT | America West Airlines, Inc. - Exemption/Renewal - Phoenix, Arizona-Mazatlan, Mexico DOT-OST-1995-736 | City of Phoenix - Answer | Other | Answer | 1994-10-21T04:00:00Z | 1994 | 10 | 1994-10-21T04:00:00Z | 1994-10-22T03:59:59Z | 2024-11-07T01:47:28Z | 1 | 0 | 09000064802a1c3f | |
| DOT-OST-1995-736-0002 | DOT | America West Airlines, Inc. - Exemption/Renewal - Phoenix, Arizona-Mazatlan, Mexico DOT-OST-1995-736 | Clark County, Nevada, Department of Aviation - Answer | Other | Answer | 1994-10-17T04:00:00Z | 1994 | 10 | 1994-10-17T04:00:00Z | 1994-10-18T03:59:59Z | 2024-11-07T01:53:12Z | 1 | 0 | 09000064802a1c26 | |
| DOT-OST-1995-736-0001 | DOT | America West Airlines, Inc. - Exemption/Renewal - Phoenix, Arizona-Mazatlan, Mexico DOT-OST-1995-736 | America West Airlines, Inc. - Exemption - Las Vegas-Mexico City, Phoenix-Mazatlan, and Phoenix-Los Cabos | Other | Application-Other | 1994-09-30T04:00:00Z | 1994 | 9 | 1994-09-30T04:00:00Z | 1994-10-01T03:59:59Z | 2024-11-07T01:52:46Z | 1 | 0 | 09000064802a1c1b |
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;