documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2016-9199" 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-9199-0011 | FAA | None FAA-2016-9199 | Prehearing Conference Report | Other | Report | 2017-01-25T05:00:00Z | 2017 | 1 | 2017-01-25T05:00:00Z | 2017-01-25T18:52:50Z | 0 | 0 | 0900006482491b09 | ||
| FAA-2016-9199-0012 | FAA | None FAA-2016-9199 | U.S. DOT/OST - Dismissal Order Due to the Respondent's Constructive Dismissal | Other | Order | 2017-01-25T05:00:00Z | 2017 | 1 | 2017-01-25T05:00:00Z | 2017-01-25T20:19:40Z | 0 | 0 | 0900006482492e60 | ||
| FAA-2016-9199-0010 | FAA | None FAA-2016-9199 | Prehearing Conference Report | Other | Report | 2017-01-24T05:00:00Z | 2017 | 1 | 2017-01-24T05:00:00Z | 2017-01-24T16:20:28Z | 0 | 0 | 090000648248cd2f | ||
| FAA-2016-9199-0009 | FAA | None FAA-2016-9199 | U.S. DOT/FAA - Complainant's Motion to Deem Allegations Admitted and to Dismiss Appeal (fax) | Other | Motion | 2016-12-19T05:00:00Z | 2016 | 12 | 2016-12-19T05:00:00Z | 2016-12-19T22:05:22Z | 0 | 0 | 0900006482413cea | ||
| FAA-2016-9199-0008 | FAA | None FAA-2016-9199 | U.S. DOT/OST - Order Setting PreHearing Conference | Other | Order | 2016-12-16T05:00:00Z | 2016 | 12 | 2016-12-16T05:00:00Z | 2016-12-16T15:35:59Z | 0 | 0 | 090000648240c8da | ||
| FAA-2016-9199-0007 | FAA | None FAA-2016-9199 | U.S. DOT/OST - Order to Show Cause and Provide Answer | Other | Order | 2016-11-08T05:00:00Z | 2016 | 11 | 2016-11-08T05:00:00Z | 2016-11-08T15:51:46Z | 0 | 0 | 09000064823794da | ||
| FAA-2016-9199-0005 | FAA | None FAA-2016-9199 | U.S. DOT/FAA - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2016-10-11T04:00:00Z | 2016 | 10 | 2016-10-11T04:00:00Z | 2017-11-29T07:10:06Z | 0 | 0 | 09000064822a1b9d | ||
| FAA-2016-9199-0006 | FAA | None FAA-2016-9199 | U.S. DOT/FAA - Notice of Appearance (original) | Other | Adjudication Notice | 2016-10-11T04:00:00Z | 2016 | 10 | 2016-10-11T04:00:00Z | 2016-10-11T18:10:37Z | 0 | 0 | 09000064822a0a44 | ||
| FAA-2016-9199-0004 | FAA | None FAA-2016-9199 | Frank Leon - Request for Hearing | Other | Request for Hearing | 2016-10-04T04:00:00Z | 2016 | 10 | 2016-10-04T04:00:00Z | 2016-10-04T18:14:03Z | 0 | 0 | 090000648228f884 | ||
| FAA-2016-9199-0003 | FAA | None FAA-2016-9199 | U.S. DOT/FAA - Complaint | Other | Complaint | 2016-10-04T04:00:00Z | 2016 | 10 | 2016-10-04T04:00:00Z | 2016-10-04T18:12:29Z | 0 | 0 | 090000648228f455 | ||
| FAA-2016-9199-0002 | FAA | None FAA-2016-9199 | U.S. DOT/FAA - Notice of Appearance | Other | Adjudication Notice | 2016-10-03T04:00:00Z | 2016 | 10 | 2016-10-03T04:00:00Z | 2016-10-03T21:04:02Z | 0 | 0 | 090000648228ebe0 | ||
| FAA-2016-9199-0001 | FAA | None FAA-2016-9199 | U.S. DOT/OST - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2016-10-03T04:00:00Z | 2016 | 10 | 2016-10-03T04:00:00Z | 2016-10-03T21:03:16Z | 0 | 0 | 0900006482277e54 |
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;