documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2016-8495" 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-8495-0010 | FAA | None FAA-2016-8495 | Regent Aerospace Corporation - Clarification Statement to Respondent's Motion to Dismiss Complaint in Lieu of an Answer | Other | Clarification | 2016-12-21T05:00:00Z | 2016 | 12 | 2016-12-21T05:00:00Z | 2016-12-21T14:53:24Z | 0 | 0 | 090000648242a5d3 | ||
| FAA-2016-8495-0009 | FAA | None FAA-2016-8495 | U.S. DOT/OST - Order Directing Filing Compliance and Setting Deadline for Respondent to Clarify It's Pleading | Other | Order | 2016-12-05T05:00:00Z | 2016 | 12 | 2016-12-05T05:00:00Z | 2016-12-05T18:21:14Z | 0 | 0 | 09000064823dc085 | ||
| FAA-2016-8495-0006 | FAA | None FAA-2016-8495 | Motion to Dismiss Complaint in Lieu of an Answer (fax) | Other | Motion | 2016-11-07T05:00:00Z | 2016 | 11 | 2016-11-07T05:00:00Z | 2016-11-07T18:56:07Z | 0 | 0 | 090000648237355f | ||
| FAA-2016-8495-0005 | FAA | None FAA-2016-8495 | Motion to Dismiss Complaint in Lieu of an Answer | Other | Motion | 2016-11-04T04:00:00Z | 2016 | 11 | 2016-11-04T04:00:00Z | 2016-11-04T14:49:56Z | 0 | 0 | 0900006482370603 | ||
| FAA-2016-8495-0004 | FAA | None FAA-2016-8495 | U.S. DOT/FAA- Complaint (original) | Other | Complaint | 2016-11-04T04:00:00Z | 2016 | 11 | 2016-11-04T04:00:00Z | 2016-11-04T14:39:43Z | 0 | 0 | 090000648236febd | ||
| FAA-2016-8495-0003 | FAA | None FAA-2016-8495 | Notice of Assignment of Proceeding | Other | Adjudication Notice | 2016-10-24T04:00:00Z | 2016 | 10 | 2016-10-24T04:00:00Z | 2016-10-24T15:16:58Z | 0 | 0 | 09000064823325d3 | ||
| FAA-2016-8495-0002 | FAA | None FAA-2016-8495 | Regent Aerospace Corporation - Request for Hearing | Other | Request for Hearing | 2016-10-11T04:00:00Z | 2016 | 10 | 2016-10-11T04:00:00Z | 2016-10-11T18:14:04Z | 0 | 0 | 09000064822a0a48 | ||
| FAA-2016-8495-0001 | FAA | None FAA-2016-8495 | U.S. DOT/FAA - Complaint | Other | Complaint | 2016-10-11T04:00:00Z | 2016 | 10 | 2016-10-11T04:00:00Z | 2016-10-11T18:13:18Z | 0 | 0 | 09000064822a0a46 |
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;