documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2016-5330" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-5330-0029 | FAA | None FAA-2016-5330 | Motion to Withdraw Exec Air of Naples, Inc. Appeal | Other | Motion | 2018-10-22T04:00:00Z | 2018 | 10 | 2018-10-22T04:00:00Z | 2018-10-22T15:49:15Z | 0 | 0 | 090000648380bdbf | ||
| FAA-2016-5330-0028 | FAA | None FAA-2016-5330 | FAA's Motion to Strike and Response to Respondent's Motion for Summary Judgment | Other | Motion | 2018-07-31T04:00:00Z | 2018 | 7 | 2018-07-31T04:00:00Z | 2018-07-31T20:15:12Z | 0 | 0 | 09000064835943dd | ||
| FAA-2016-5330-0027 | FAA | None FAA-2016-5330 | Respondent's Motion to Withdraw as Designated Representative | Other | Motion | 2018-07-30T04:00:00Z | 2018 | 7 | 2018-07-30T04:00:00Z | 2018-07-30T19:53:59Z | 0 | 0 | 090000648358558a | ||
| FAA-2016-5330-0026 | FAA | None FAA-2016-5330 | FAA's Motion to Strike and Response to Respondent's Motion for Summary Judgment | Other | Motion | 2018-07-30T04:00:00Z | 2018 | 7 | 2018-07-30T04:00:00Z | 2018-07-30T19:45:37Z | 0 | 0 | 0900006483584e5f | ||
| FAA-2016-5330-0025 | FAA | None FAA-2016-5330 | Transcript of Telephonic Hearing Held May 31, 2018 | Other | Transcript(s) | 2018-07-12T04:00:00Z | 2018 | 7 | 2018-07-12T04:00:00Z | 2018-07-12T18:39:42Z | 0 | 0 | 09000064834d9ff8 | ||
| FAA-2016-5330-0024 | FAA | None FAA-2016-5330 | Order Ruling on the Respondent's Motion in Limine and Amending the Litigation Schedule | Other | Order | 2018-06-04T04:00:00Z | 2018 | 6 | 2018-06-04T04:00:00Z | 2018-06-04T18:57:57Z | 0 | 0 | 0900006483333bf9 | ||
| FAA-2016-5330-0023 | FAA | None FAA-2016-5330 | Order Granting Respondent's Request for Subpoenas | Other | Order | 2018-04-26T04:00:00Z | 2018 | 4 | 2018-04-26T04:00:00Z | 2018-04-26T15:16:01Z | 0 | 0 | 09000064831cda83 | ||
| FAA-2016-5330-0022 | FAA | None FAA-2016-5330 | Transcript of Telephonic Hearing Held 03/08/2018 | Other | Transcript(s) | 2018-04-18T04:00:00Z | 2018 | 4 | 2018-04-18T04:00:00Z | 2018-04-18T19:50:03Z | 0 | 0 | 090000648317076e | ||
| FAA-2016-5330-0021 | FAA | None FAA-2016-5330 | Order Correcting the February 9, 2018 Telephone Conference Transcript | Other | Order | 2018-03-14T04:00:00Z | 2018 | 3 | 2018-03-14T04:00:00Z | 2018-03-14T14:46:35Z | 0 | 0 | 0900006483007401 | ||
| FAA-2016-5330-0020 | FAA | None FAA-2016-5330 | Order Reopening Discovery and Granting/Denying Other Relief | Other | Order | 2018-03-12T04:00:00Z | 2018 | 3 | 2018-03-12T04:00:00Z | 2018-03-12T19:07:48Z | 0 | 0 | 09000064830010c6 | ||
| FAA-2016-5330-0019 | FAA | None FAA-2016-5330 | Order Suspending Summary Judgment Motion Deadlines and Setting Second Telephone Conference | Other | Order | 2018-02-26T05:00:00Z | 2018 | 2 | 2018-02-26T05:00:00Z | 2018-02-26T16:04:29Z | 0 | 0 | 0900006482f56a3d | ||
| FAA-2016-5330-0018 | FAA | None FAA-2016-5330 | Response to Respondent's Motion in Limine | Other | Response(s) | 2018-01-31T05:00:00Z | 2018 | 1 | 2018-01-31T05:00:00Z | 2018-01-31T18:24:58Z | 0 | 0 | 0900006482e85a17 |
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;