documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FAA-2016-9182" 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-9182-0007 | FAA | None FAA-2016-9182 | GoJet IAirlines, LLC - Respondent's Motion to Withdrawal Request for Hearing | Other | Motion | 2016-12-16T05:00:00Z | 2016 | 12 | 2016-12-16T05:00:00Z | 2016-12-16T15:38:12Z | 0 | 0 | 0900006482413ce4 | ||
| FAA-2016-9182-0005 | FAA | None FAA-2016-9182 | GoJet IAirlines, LLC - Respondent's Motion to Withdrawal Request for Hearing (fax) | Other | Motion | 2016-12-09T05:00:00Z | 2016 | 12 | 2016-12-09T05:00:00Z | 2016-12-09T15:17:44Z | 0 | 0 | 09000064823ee8ea | ||
| FAA-2016-9182-0006 | FAA | None FAA-2016-9182 | Dismissal Order | Other | Order | 2016-12-09T05:00:00Z | 2016 | 12 | 2016-12-09T05:00:00Z | 2016-12-09T19:46:29Z | 0 | 0 | 09000064823efb1c | ||
| FAA-2016-9182-0004 | FAA | None FAA-2016-9182 | U.S. DOT/OST - Order to Show Cause and Provide Answer | Other | Order | 2016-11-18T05:00:00Z | 2016 | 11 | 2016-11-18T05:00:00Z | 2016-11-18T15:48:05Z | 0 | 0 | 0900006482397ca4 | ||
| FAA-2016-9182-0003 | FAA | None FAA-2016-9182 | U.S. DOT/OST - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2016-10-18T04:00:00Z | 2016 | 10 | 2016-10-18T04:00:00Z | 2016-10-18T18:14:49Z | 0 | 0 | 09000064823047d9 | ||
| FAA-2016-9182-0002 | FAA | None FAA-2016-9182 | GoJet Airlines, LLC - Request for Hearing | Other | Request for Hearing | 2016-10-11T04:00:00Z | 2016 | 10 | 2016-10-11T04:00:00Z | 2016-10-11T18:05:00Z | 0 | 0 | 09000064822a0462 | ||
| FAA-2016-9182-0001 | FAA | None FAA-2016-9182 | U.S. DOT/FAA - Complaint | Other | Complaint | 2016-10-11T04:00:00Z | 2016 | 10 | 2016-10-11T04:00:00Z | 2016-10-11T18:04:01Z | 0 | 0 | 09000064822a0460 |
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;