documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2014-0116" and posted_year = 2018 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-2014-0116-0059 | FAA | None FAA-2014-0116 | Complainant's List of Witnesses and Exhibits. | Other | Exhibit(s) | 2018-08-28T04:00:00Z | 2018 | 8 | 2018-08-28T04:00:00Z | 2018-08-28T15:20:22Z | 0 | 0 | 090000648365e1fc | ||
| FAA-2014-0116-0058 | FAA | None FAA-2014-0116 | Respondent's List of Witnesses and Exchange of Exhibits | Other | Exhibit(s) | 2018-08-28T04:00:00Z | 2018 | 8 | 2018-08-28T04:00:00Z | 2018-08-28T15:19:57Z | 0 | 0 | 090000648365d77d | ||
| FAA-2014-0116-0057 | FAA | None FAA-2014-0116 | Transcript of Telephonic Litigation Scheduling Conference Held 03/07/2018 | Other | Transcript(s) | 2018-04-18T04:00:00Z | 2018 | 4 | 2018-04-18T04:00:00Z | 2018-04-18T19:49:33Z | 0 | 0 | 090000648317076b | ||
| FAA-2014-0116-0056 | FAA | None FAA-2014-0116 | Notice of Hearing Location | Other | Adjudication Notice | 2018-04-02T04:00:00Z | 2018 | 4 | 2018-04-02T04:00:00Z | 2018-04-02T15:50:21Z | 0 | 0 | 0900006483087732 | ||
| FAA-2014-0116-0055 | FAA | None FAA-2014-0116 | Order Setting Hearing Dates and Procedures | Other | Order | 2018-03-14T04:00:00Z | 2018 | 3 | 2018-03-14T04:00:00Z | 2018-03-14T14:37:01Z | 0 | 0 | 0900006483008143 | ||
| FAA-2014-0116-0054 | FAA | None FAA-2014-0116 | Order Correcting January 25, 2018 Scheduling Conference Transcript | Other | Order | 2018-03-06T05:00:00Z | 2018 | 3 | 2018-03-06T05:00:00Z | 2018-03-06T19:31:25Z | 0 | 0 | 0900006482f99339 | ||
| FAA-2014-0116-0053 | FAA | None FAA-2014-0116 | Notice of January 25, 2018 Scheduling Conference Transcript Errors and Proposed Civil Rules 60(a) Corrective Action, and Order Setting Deadline to File Any Objection(s) | Other | Adjudication Notice | 2018-02-22T05:00:00Z | 2018 | 2 | 2018-02-22T05:00:00Z | 2018-02-22T15:40:50Z | 0 | 0 | 0900006482f52953 | ||
| FAA-2014-0116-0052 | FAA | None FAA-2014-0116 | Order Directing The Parties to Confer and File A Statement of Undisputed Facts And Setting A Second Litigation Conference | Other | Order | 2018-01-30T05:00:00Z | 2018 | 1 | 2018-01-30T05:00:00Z | 2018-01-30T16:07:35Z | 0 | 0 | 0900006482e7d14b | ||
| FAA-2014-0116-0050 | FAA | None FAA-2014-0116 | Complainant's Motion for Partial Decision (Summary Judgment)-Resubmitted (fax) | Other | Motion | 2018-01-29T05:00:00Z | 2018 | 1 | 2018-01-29T05:00:00Z | 2018-01-29T19:07:31Z | 0 | 0 | 0900006482e776ab | ||
| FAA-2014-0116-0051 | FAA | None FAA-2014-0116 | Complainant's Motion for Partial Decision (Summary Judgment)-Resubmitted (original) | Other | Motion | 2018-01-29T05:00:00Z | 2018 | 1 | 2018-01-29T05:00:00Z | 2018-01-29T19:08:46Z | 0 | 0 | 0900006482e77d57 |
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;