documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2016-6412" and posted_year = 2016 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-6412-0013 | FAA | None FAA-2016-6412 | U.S. DOT/OST - PreHearing Conference Report | Other | Report | 2016-12-27T05:00:00Z | 2016 | 12 | 2016-12-27T05:00:00Z | 2016-12-27T16:21:21Z | 0 | 0 | 090000648243494b | ||
| FAA-2016-6412-0009 | FAA | None FAA-2016-6412 | U.S. DOT/FAA - Complainant's Initial Discovery Requests, | Other | Request | 2016-10-05T04:00:00Z | 2016 | 10 | 2016-10-05T04:00:00Z | 2016-10-05T15:36:00Z | 0 | 0 | 0900006482296867 | ||
| FAA-2016-6412-0008 | FAA | None FAA-2016-6412 | Complainant's Responses to Respondent's First Discovery Request | Other | Response(s) | 2016-09-23T04:00:00Z | 2016 | 9 | 2016-09-23T04:00:00Z | 2016-09-23T18:18:01Z | 0 | 0 | 0900006482236286 | ||
| FAA-2016-6412-0007 | FAA | None FAA-2016-6412 | Historic Flight Foundation - First Discovery Request | Other | Request | 2016-09-20T04:00:00Z | 2016 | 9 | 2016-09-20T04:00:00Z | 2016-09-20T19:44:01Z | 0 | 0 | 0900006482230a6f | ||
| FAA-2016-6412-0006 | FAA | None FAA-2016-6412 | U.S. DOT/OST - Initial Procedural Order | Other | Order | 2016-09-16T04:00:00Z | 2016 | 9 | 2016-09-16T04:00:00Z | 2016-09-16T15:16:37Z | 0 | 0 | 09000064821e8def | ||
| FAA-2016-6412-0005 | FAA | None FAA-2016-6412 | Historic Flight Foundation - Answer to Complaint | Other | Answer | 2016-08-29T04:00:00Z | 2016 | 8 | 2016-08-29T04:00:00Z | 2016-08-29T19:02:29Z | 0 | 0 | 09000064821a9136 | ||
| FAA-2016-6412-0004 | FAA | None FAA-2016-6412 | U.S. DOT/OST - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2016-08-11T04:00:00Z | 2016 | 8 | 2016-08-11T04:00:00Z | 2016-08-12T18:49:54Z | 0 | 0 | 090000648215e443 | ||
| FAA-2016-6412-0003 | FAA | None FAA-2016-6412 | Historic Flight Foundation - Answer to Complaint (2) | Other | Answer | 2016-07-26T04:00:00Z | 2016 | 7 | 2016-07-26T04:00:00Z | 2016-07-26T18:30:34Z | 0 | 0 | 09000064820f2c56 | ||
| FAA-2016-6412-0002 | FAA | None FAA-2016-6412 | U.S. DOT/FAA - Complaint | Other | Complaint | 2016-07-22T04:00:00Z | 2016 | 7 | 2016-07-22T04:00:00Z | 2016-07-22T14:24:55Z | 0 | 0 | 09000064820de76c | ||
| FAA-2016-6412-0001 | FAA | None FAA-2016-6412 | Historic Flight Foundation - Request for Hearing | Other | Request for Hearing | 2016-07-22T04:00:00Z | 2016 | 7 | 2016-07-22T04:00:00Z | 2016-07-22T14:23:43Z | 0 | 0 | 09000064820de768 |
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;