documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2016-8491" and posted_year = 2017 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-2016-8491-0014 | FAA | None FAA-2016-8491 | FAA's Supplemental Submission and Memorandum of Authority in Support of its Request for an $8,000 Judgment | Other | Additional Information | 2017-09-07T04:00:00Z | 2017 | 9 | 2017-09-07T04:00:00Z | 2017-09-07T14:58:08Z | 0 | 0 | 0900006482b143c2 | ||
| FAA-2016-8491-0013 | FAA | None FAA-2016-8491 | Order Setting Deadlines for Written Submissions on the FAA's Request for an $8,000 Judgment | Other | Order | 2017-08-02T04:00:00Z | 2017 | 8 | 2017-08-02T04:00:00Z | 2017-08-02T20:33:11Z | 0 | 0 | 0900006482994e48 | ||
| FAA-2016-8491-0012 | FAA | None FAA-2016-8491 | Order Granting In Part The FAA's Motion To Deem Allegations Admitted And Reserving Ruling On Motion For Judgment | Other | Order | 2017-07-17T04:00:00Z | 2017 | 7 | 2017-07-17T04:00:00Z | 2017-07-17T17:16:02Z | 0 | 0 | 0900006482934d33 | ||
| FAA-2016-8491-0011 | FAA | None FAA-2016-8491 | Complaint | Other | Complaint | 2017-05-24T04:00:00Z | 2017 | 5 | 2017-05-24T04:00:00Z | 2017-05-24T15:05:24Z | 0 | 0 | 0900006482605cab | ||
| FAA-2016-8491-0009 | FAA | None FAA-2016-8491 | Transcript of Teleconference Held 12-06-2016 | Other | Transcript(s) | 2017-05-24T04:00:00Z | 2017 | 5 | 2017-05-24T04:00:00Z | 2017-05-24T15:03:57Z | 0 | 0 | 0900006482605ca7 | ||
| FAA-2016-8491-0008 | FAA | None FAA-2016-8491 | Motion to Deem Allegations Admitted and for Judgment on the Pleadings | Other | Motion | 2017-05-24T04:00:00Z | 2017 | 5 | 2017-05-24T04:00:00Z | 2017-05-24T15:03:29Z | 0 | 0 | 0900006482605593 | ||
| FAA-2016-8491-0010 | FAA | None FAA-2016-8491 | Notice of Unavailability and Entry of Appearance | Other | Adjudication Notice | 2017-05-24T04:00:00Z | 2017 | 5 | 2017-05-24T04:00:00Z | 2017-05-24T15:04:35Z | 0 | 0 | 0900006482605ca9 | ||
| FAA-2016-8491-0007 | FAA | None FAA-2016-8491 | Transcript of Teleconference Held December 6, 2016 | Other | Transcript(s) | 2017-01-17T05:00:00Z | 2017 | 1 | 2017-01-17T05:00:00Z | 2017-01-17T19:56:30Z | 0 | 0 | 090000648247d036 |
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;