documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2016-8489" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FAA-2016-8489-0017 | FAA | None FAA-2016-8489 | Order Accepting the Parties' Joint Stipulation and Limiting the Hearing | Other | Order | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T05:00:00Z | 2017-12-15T16:12:51Z | 0 | 0 | 0900006482d1468f | ||
| FAA-2016-8489-0015 | FAA | None FAA-2016-8489 | List of Respondent's Exhibits | Other | Exhibit(s) | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T05:00:00Z | 2017-12-15T14:54:55Z | 0 | 0 | 0900006482d133b5 | ||
| FAA-2016-8489-0014 | FAA | None FAA-2016-8489 | List of Witnesses and Exchange of Exhibits | Other | Exhibit(s) | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T05:00:00Z | 2017-12-15T14:54:23Z | 0 | 0 | 0900006482d133b3 | ||
| FAA-2016-8489-0016 | FAA | None FAA-2016-8489 | Order Granting Complainants Request for Subpoenas | Other | Order | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T05:00:00Z | 2017-12-15T15:48:09Z | 0 | 0 | 0900006482d134ac | ||
| FAA-2016-8489-0012 | FAA | None FAA-2016-8489 | Joint Stipulation to Limit the Hearing to the Allegations not Admitted in Respondent's Amended Answer | Other | Stipulation(s) | 2017-12-14T05:00:00Z | 2017 | 12 | 2017-12-14T05:00:00Z | 2017-12-14T20:04:12Z | 0 | 0 | 0900006482d0a45f | ||
| FAA-2016-8489-0013 | FAA | None FAA-2016-8489 | Complainant's Pre-Hearing Disclosures | Other | Additional Information | 2017-12-14T05:00:00Z | 2017 | 12 | 2017-12-14T05:00:00Z | 2017-12-14T20:04:50Z | 0 | 0 | 0900006482d0a461 | ||
| FAA-2016-8489-0011 | FAA | None FAA-2016-8489 | Notice of Hearing Location | Other | Adjudication Notice | 2017-12-04T05:00:00Z | 2017 | 12 | 2017-12-04T05:00:00Z | 2017-12-04T16:28:27Z | 0 | 0 | 0900006482cd47a5 | ||
| FAA-2016-8489-0010 | FAA | None FAA-2016-8489 | First Amended Answer | Other | Answer | 2017-11-30T05:00:00Z | 2017 | 11 | 2017-11-30T05:00:00Z | 2017-11-30T21:19:19Z | 0 | 0 | 0900006482cb85fb | ||
| FAA-2016-8489-0009 | FAA | None FAA-2016-8489 | Transcript of Telephonic Pretrial Conference Held 10-12-2017 | Other | Transcript(s) | 2017-10-27T04:00:00Z | 2017 | 10 | 2017-10-27T04:00:00Z | 2017-10-27T14:14:37Z | 0 | 0 | 0900006482c12919 | ||
| FAA-2016-8489-0008 | FAA | None FAA-2016-8489 | Order Setting Second Pre-Hearing Status Conference | Other | Order | 2017-10-16T04:00:00Z | 2017 | 10 | 2017-10-16T04:00:00Z | 2017-10-16T19:53:16Z | 0 | 0 | 0900006482bcff81 | ||
| FAA-2016-8489-0007 | FAA | None FAA-2016-8489 | U.S. DOT/OST - Teleconference Transcript December 8 2016 | Other | Transcript(s) | 2017-01-11T05:00:00Z | 2017 | 1 | 2017-01-11T05:00:00Z | 2017-01-11T16:11:57Z | 0 | 0 | 0900006482459197 | ||
| FAA-2016-8489-0006 | FAA | None FAA-2016-8489 | Joint Proposed Scheduling/Discovery Plan | Other | Discovery | 2017-01-09T05:00:00Z | 2017 | 1 | 2017-01-09T05:00:00Z | 2017-01-09T18:10:28Z | 0 | 0 | 0900006482450240 |
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;