documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where docket_id = "FAA-2017-0931" 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-0931-0013 | FAA | None FAA-2017-0931 | Respondent's Withdrawal of Request for Hearing | Other | Withdrawal | 2019-08-01T04:00:00Z | 2019 | 8 | 2019-08-01T04:00:00Z | 2019-08-01T15:00:11Z | 0 | 0 | 0900006483ddfdbf | ||
| FAA-2017-0931-0012 | FAA | None FAA-2017-0931 | Dismissal Order | Other | Order | 2019-07-22T04:00:00Z | 2019 | 7 | 2019-07-22T04:00:00Z | 2019-07-22T19:37:28Z | 0 | 0 | 0900006483da7b24 | ||
| FAA-2017-0931-0011 | FAA | None FAA-2017-0931 | Order Finalizing Litigation Schedule | Other | Order | 2019-04-29T04:00:00Z | 2019 | 4 | 2019-04-29T04:00:00Z | 2019-04-29T18:51:43Z | 0 | 0 | 0900006483c155da | ||
| FAA-2017-0931-0010 | FAA | None FAA-2017-0931 | Notice of Hearing | Other | Hearing/Meeting Summary | 2019-04-29T04:00:00Z | 2019 | 4 | 2019-04-29T04:00:00Z | 2019-04-29T18:49:38Z | 0 | 0 | 0900006483c14c31 | ||
| FAA-2017-0931-0009 | FAA | None FAA-2017-0931 | Complainant's Response to Respondent's First Set of Discovery Requests | Other | Response(s) | 2019-04-01T04:00:00Z | 2019 | 4 | 2019-04-01T04:00:00Z | 2019-04-01T13:42:56Z | 0 | 0 | 0900006483b521ad | ||
| FAA-2017-0931-0008 | FAA | None FAA-2017-0931 | Prehearing Conference Report | Other | Report | 2018-12-18T05:00:00Z | 2018 | 12 | 2018-12-18T05:00:00Z | 2018-12-18T16:26:49Z | 0 | 0 | 09000064839aaacd | ||
| FAA-2017-0931-0007 | FAA | None FAA-2017-0931 | Joint Scheduling and Discovery Plan (fax) | Other | Discovery | 2018-12-11T05:00:00Z | 2018 | 12 | 2018-12-11T05:00:00Z | 2018-12-11T19:20:48Z | 0 | 0 | 09000064839828c0 | ||
| FAA-2017-0931-0006 | FAA | None FAA-2017-0931 | Procedural Order | Other | Order | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T04:00:00Z | 2018-09-13T18:01:41Z | 0 | 0 | 09000064836e8484 | ||
| FAA-2017-0931-0005 | FAA | None FAA-2017-0931 | Order Denying the Complainant's Motion to Deem Allegations Admitted | Other | Order | 2018-09-13T04:00:00Z | 2018 | 9 | 2018-09-13T04:00:00Z | 2018-09-13T18:01:15Z | 0 | 0 | 09000064836e8482 | ||
| FAA-2017-0931-0004 | FAA | None FAA-2017-0931 | Answer | Other | Answer | 2018-07-31T04:00:00Z | 2018 | 7 | 2018-07-31T04:00:00Z | 2018-07-31T20:15:56Z | 0 | 0 | 0900006483595140 | ||
| FAA-2017-0931-0003 | FAA | None FAA-2017-0931 | Notice of Assignment of Proceeding | Other | Adjudication Notice | 2018-01-31T05:00:00Z | 2018 | 1 | 2018-01-31T05:00:00Z | 2018-01-31T19:25:49Z | 0 | 0 | 0900006482e85f12 | ||
| FAA-2017-0931-0002 | FAA | None FAA-2017-0931 | Complaint | Other | Complaint | 2018-01-05T05:00:00Z | 2018 | 1 | 2018-01-05T05:00:00Z | 2018-01-05T20:28:07Z | 0 | 0 | 0900006482d9d2de | ||
| FAA-2017-0931-0001 | FAA | None FAA-2017-0931 | Request for Hearing | Other | Request for Hearing | 2018-01-05T05:00:00Z | 2018 | 1 | 2018-01-05T05:00:00Z | 2018-01-05T20:27:52Z | 0 | 0 | 0900006482d9d2dc |
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;