documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2016-9209" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FAA-2016-9209-0008 | FAA | None FAA-2016-9209 | Park West Airlines - Respondent's Notice of Withdrawal of Hearing Request (fax) | Other | Withdrawal | 2017-03-23T04:00:00Z | 2017 | 3 | 2017-03-23T04:00:00Z | 2017-03-23T14:39:28Z | 0 | 0 | 090000648251cffc | ||
| FAA-2016-9209-0009 | FAA | None FAA-2016-9209 | Park West Airlines- Respondent's Notice of Withdrawal of Hearing Request (original) | Other | Withdrawal | 2017-03-23T04:00:00Z | 2017 | 3 | 2017-03-23T04:00:00Z | 2017-03-23T14:40:13Z | 0 | 0 | 090000648251d2ff | ||
| FAA-2016-9209-0007 | FAA | None FAA-2016-9209 | U.S. DOT/OST - Dismissal Order | Other | Order | 2017-03-17T04:00:00Z | 2017 | 3 | 2017-03-17T04:00:00Z | 2017-03-17T15:32:40Z | 0 | 0 | 090000648250eb78 | ||
| FAA-2016-9209-0006 | FAA | None FAA-2016-9209 | Park West Airlines - Respondent's Notice of Appearance | Other | Adjudication Notice | 2017-01-17T05:00:00Z | 2017 | 1 | 2017-01-17T05:00:00Z | 2017-01-17T19:37:13Z | 0 | 0 | 090000648247d778 | ||
| FAA-2016-9209-0005 | FAA | None FAA-2016-9209 | Park West Airlines - Respondent's Answer and Affirmative Defenses | Other | Answer | 2017-01-17T05:00:00Z | 2017 | 1 | 2017-01-17T05:00:00Z | 2017-01-17T19:33:46Z | 0 | 0 | 090000648247cfad | ||
| FAA-2016-9209-0004 | FAA | None FAA-2016-9209 | U.S. DOT/OST - Initial Procedural Order | Other | Order | 2017-01-06T05:00:00Z | 2017 | 1 | 2017-01-06T05:00:00Z | 2017-01-06T16:40:36Z | 0 | 0 | 090000648244c886 | ||
| FAA-2016-9209-0003 | FAA | None FAA-2016-9209 | U.S. DOT/OST - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2016-12-28T05:00:00Z | 2016 | 12 | 2016-12-28T05:00:00Z | 2016-12-28T20:23:30Z | 0 | 0 | 090000648243b041 | ||
| FAA-2016-9209-0001 | FAA | None FAA-2016-9209 | Pak West Airlines - Request for Hearing | Other | Request | 2016-12-07T05:00:00Z | 2016 | 12 | 2016-12-07T05:00:00Z | 2016-12-07T21:29:59Z | 0 | 0 | 09000064823e500b | ||
| FAA-2016-9209-0002 | FAA | None FAA-2016-9209 | U.S. DOT/FAA - Complaint | Other | Complaint | 2016-12-07T05:00:00Z | 2016 | 12 | 2016-12-07T05:00:00Z | 2016-12-07T21:31:33Z | 0 | 0 | 09000064823e500f |
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;