documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where docket_id = "FAA-2017-1224" and posted_year = 2020 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-2017-1224-0044 | FAA | None FAA-2017-1224 | Withdrawal of Request for a Hearing and Answer | Other | Withdrawal | 2020-02-05T05:00:00Z | 2020 | 2 | 2020-02-05T05:00:00Z | 2020-02-05T15:28:59Z | 0 | 0 | 090000648432c498 | ||
| FAA-2017-1224-0043 | FAA | None FAA-2017-1224 | Order Denying Requests for Oral Argument and Denying the Respondent's Motion to Strike | Other | Order | 2020-01-31T05:00:00Z | 2020 | 1 | 2020-01-31T05:00:00Z | 2020-01-31T19:31:17Z | 0 | 0 | 09000064843189db | ||
| FAA-2017-1224-0040 | FAA | None FAA-2017-1224 | Complainant's Renewed Motion in Limine | Other | Motion | 2020-01-28T05:00:00Z | 2020 | 1 | 2020-01-28T05:00:00Z | 2020-01-28T20:07:18Z | 0 | 0 | 09000064842fd705 | ||
| FAA-2017-1224-0042 | FAA | None FAA-2017-1224 | Complainant's Reply to Respondent's Supplemental Opposition to Amended Motion for Summary Judgment | Other | Reply | 2020-01-28T05:00:00Z | 2020 | 1 | 2020-01-28T05:00:00Z | 2020-01-28T20:13:01Z | 0 | 0 | 09000064842fd740 | ||
| FAA-2017-1224-0041 | FAA | None FAA-2017-1224 | Respondent's Supplemental Opposition to Amended Motion For Summary Judgment | Other | Opposition | 2020-01-28T05:00:00Z | 2020 | 1 | 2020-01-28T05:00:00Z | 2020-01-28T20:09:19Z | 0 | 0 | 09000064842fd708 | ||
| FAA-2017-1224-0039 | FAA | None FAA-2017-1224 | Withdrawal of Complainant's Motion in Limine | Other | Withdrawal | 2020-01-16T05:00:00Z | 2020 | 1 | 2020-01-16T05:00:00Z | 2020-01-16T20:15:03Z | 0 | 0 | 09000064842b063d | ||
| FAA-2017-1224-0038 | FAA | None FAA-2017-1224 | Order Granting the FAA's Motion | Other | Order | 2020-01-14T05:00:00Z | 2020 | 1 | 2020-01-14T05:00:00Z | 2020-01-14T19:21:56Z | 0 | 0 | 09000064842a068a | ||
| FAA-2017-1224-0035 | FAA | None FAA-2017-1224 | Complainant's Motion in Limine | Other | Motion | 2020-01-10T05:00:00Z | 2020 | 1 | 2020-01-10T05:00:00Z | 2020-01-10T15:54:08Z | 0 | 0 | 09000064842863cd | ||
| FAA-2017-1224-0037 | FAA | None FAA-2017-1224 | Respondent's Opposition to Amended Motion for Summary Judgment | Other | Opposition | 2020-01-10T05:00:00Z | 2020 | 1 | 2020-01-10T05:00:00Z | 2020-01-10T16:01:22Z | 0 | 0 | 0900006484286419 | ||
| FAA-2017-1224-0033 | FAA | None FAA-2017-1224 | Motion for Disqualification J.E. Sullivan with Supporting Affidavit, Points and Authorities | Other | Motion | 2020-01-10T05:00:00Z | 2020 | 1 | 2020-01-10T05:00:00Z | 2020-01-10T14:33:25Z | 0 | 0 | 0900006484283eaf | ||
| FAA-2017-1224-0034 | FAA | None FAA-2017-1224 | Motion to Strike Complainant's Amended Summary Judgment Motion | Other | Motion | 2020-01-10T05:00:00Z | 2020 | 1 | 2020-01-10T05:00:00Z | 2020-01-10T15:49:44Z | 0 | 0 | 09000064842863ca | ||
| FAA-2017-1224-0036 | FAA | None FAA-2017-1224 | Complaiant's Opposition to AK Scientific Inc's Motion to Strike Complainant's Amended Summary Judgment Motion | Other | Opposition | 2020-01-10T05:00:00Z | 2020 | 1 | 2020-01-10T05:00:00Z | 2020-01-10T16:00:21Z | 0 | 0 | 0900006484286418 | ||
| FAA-2017-1224-0032 | FAA | None FAA-2017-1224 | Order Denying Respondent's Motion | Other | Order | 2020-01-02T05:00:00Z | 2020 | 1 | 2020-01-02T05:00:00Z | 2020-01-02T18:44:56Z | 0 | 0 | 090000648425f9e9 |
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;