documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where docket_id = "FAA-2017-0097" and posted_year = 2019 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-0097-0030 | FAA | None FAA-2017-0097 | Exhibits C-1,2,3,4,5,6,7,8,9,10,11,14,15 | Other | Exhibit(s) | 2019-08-13T04:00:00Z | 2019 | 8 | 2019-08-13T04:00:00Z | 2019-08-13T18:57:32Z | 0 | 0 | 0900006483e3de84 | ||
| FAA-2017-0097-0029 | FAA | None FAA-2017-0097 | Respondent Exhibits 1 to 4 | Other | Exhibit(s) | 2019-08-13T04:00:00Z | 2019 | 8 | 2019-08-13T04:00:00Z | 2020-01-31T06:58:08Z | 0 | 0 | 0900006483e3d83f | ||
| FAA-2017-0097-0026 | FAA | None FAA-2017-0097 | Complainant's Reply Brief (fax) | Other | Brief | 2019-06-12T04:00:00Z | 2019 | 6 | 2019-06-12T04:00:00Z | 2019-06-12T13:54:54Z | 0 | 0 | 0900006483d09082 | ||
| FAA-2017-0097-0028 | FAA | None FAA-2017-0097 | Respondent's Comments to Complainant's Reply Brief | Other | Brief | 2019-06-12T04:00:00Z | 2019 | 6 | 2019-06-12T04:00:00Z | 2019-06-12T14:41:39Z | 0 | 0 | 0900006483d09402 | ||
| FAA-2017-0097-0027 | FAA | None FAA-2017-0097 | Complainant's Reply Brief (original) | Other | Reply | 2019-06-12T04:00:00Z | 2019 | 6 | 2019-06-12T04:00:00Z | 2019-06-12T14:22:49Z | 0 | 0 | 0900006483d092dd | ||
| FAA-2017-0097-0025 | FAA | None FAA-2017-0097 | Notice of Appeal | Other | Appeal | 2019-04-01T04:00:00Z | 2019 | 4 | 2019-04-01T04:00:00Z | 2019-04-01T13:57:27Z | 0 | 0 | 0900006483b526ce | ||
| FAA-2017-0097-0023 | FAA | None FAA-2017-0097 | Initial Decision | Other | Initial Decision | 2019-03-06T05:00:00Z | 2019 | 3 | 2019-03-06T05:00:00Z | 2019-03-06T19:41:05Z | 0 | 0 | 0900006483ac2f99 | ||
| FAA-2017-0097-0024 | FAA | None FAA-2017-0097 | Erratum | Other | Erratum | 2019-03-06T05:00:00Z | 2019 | 3 | 2019-03-06T05:00:00Z | 2019-03-06T19:41:43Z | 0 | 0 | 0900006483ac2f9e | ||
| FAA-2017-0097-0022 | FAA | None FAA-2017-0097 | Transcript of Telephonic Pretrial Conference Held 01/28/2019 | Other | Transcript(s) | 2019-03-05T05:00:00Z | 2019 | 3 | 2019-03-05T05:00:00Z | 2019-03-05T17:05:24Z | 0 | 0 | 0900006483abf5a4 | ||
| FAA-2017-0097-0021 | FAA | None FAA-2017-0097 | Complainant's Disclosure of Expert Testimony (fax) | Other | Adjudication Notice | 2019-03-05T05:00:00Z | 2019 | 3 | 2019-03-05T05:00:00Z | 2019-03-05T15:01:54Z | 0 | 0 | 0900006483abe5d3 | ||
| FAA-2017-0097-0020 | FAA | None FAA-2017-0097 | Transcript of Hearing, January 31, 2019 | Other | Transcript(s) | 2019-02-14T05:00:00Z | 2019 | 2 | 2019-02-14T05:00:00Z | 2019-02-14T20:44:44Z | 0 | 0 | 0900006483a773c7 | ||
| FAA-2017-0097-0018 | FAA | None FAA-2017-0097 | PreHearing Conference Report | Other | Report | 2019-01-30T05:00:00Z | 2019 | 1 | 2019-01-30T05:00:00Z | 2019-01-30T18:05:01Z | 0 | 0 | 0900006483a2902b | ||
| FAA-2017-0097-0019 | FAA | None FAA-2017-0097 | Amended Notice of Hearing | Other | Hearing/Meeting Transcript | 2019-01-30T05:00:00Z | 2019 | 1 | 2019-01-30T05:00:00Z | 2019-01-30T18:06:15Z | 0 | 0 | 0900006483a29031 |
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;