documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2016-5322" 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-5322-0009 | FAA | None FAA-2016-5322 | U.S. DOT/OST - Order Dismissing Proceeding | Other | Order | 2017-01-12T05:00:00Z | 2017 | 1 | 2017-01-12T05:00:00Z | 2017-01-12T20:04:13Z | 0 | 0 | 0900006482464669 | ||
| FAA-2016-5322-0008 | FAA | None FAA-2016-5322 | U.S. DOT/FAA - Request for Extension of Time to File Discovery Plan | Other | Request | 2016-12-16T05:00:00Z | 2016 | 12 | 2016-12-16T05:00:00Z | 2016-12-16T15:41:02Z | 0 | 0 | 090000648240d434 | ||
| FAA-2016-5322-0007 | FAA | None FAA-2016-5322 | Order Granting the FAA's Motion for a Continuance | Other | Order | 2016-12-09T05:00:00Z | 2016 | 12 | 2016-12-09T05:00:00Z | 2016-12-09T15:16:47Z | 0 | 0 | 09000064823ee3b1 | ||
| FAA-2016-5322-0006 | FAA | None FAA-2016-5322 | U.S. DOT/OST - Order Setting a Rule 16 Litigation Scheduling Conference, and Directing the Parties to Confer and File a Rule 26(f) Proposed Discovery Plan | Other | Order | 2016-09-06T04:00:00Z | 2016 | 9 | 2016-09-06T04:00:00Z | 2016-09-06T14:34:37Z | 0 | 0 | 09000064821bd93d | ||
| FAA-2016-5322-0005 | FAA | None FAA-2016-5322 | U.S. DOT/OST - Order Denying the Motion to Dismiss Accepting the Complaint, and Setting Deadline for the Respondent to File an Answer | Other | Order | 2016-07-22T04:00:00Z | 2016 | 7 | 2016-07-22T04:00:00Z | 2016-07-22T13:16:26Z | 0 | 0 | 09000064820b8499 | ||
| FAA-2016-5322-0004 | FAA | None FAA-2016-5322 | In the Matter of Arnold T. Bullinger - Order Setting Deadline for the Respondent to Show Cause | Other | Order | 2016-05-05T04:00:00Z | 2016 | 5 | 2016-05-05T04:00:00Z | 2016-05-05T14:50:26Z | 0 | 0 | 0900006481fab5e0 | ||
| FAA-2016-5322-0002 | FAA | None FAA-2016-5322 | U.S. DOT/FAA - Complaint | Other | Complaint | 2016-05-04T04:00:00Z | 2016 | 5 | 2016-05-04T04:00:00Z | 2016-05-04T14:27:55Z | 0 | 0 | 0900006481fa49df | ||
| FAA-2016-5322-0003 | FAA | None FAA-2016-5322 | U.S. DOT/FAA - Motion to Dismiss Late Filed Appeal | Other | Motion | 2016-05-04T04:00:00Z | 2016 | 5 | 2016-05-04T04:00:00Z | 2016-05-04T14:28:57Z | 0 | 0 | 0900006481fa49e4 | ||
| FAA-2016-5322-0001 | FAA | None FAA-2016-5322 | U.S. DOT/OST - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2016-05-02T04:00:00Z | 2016 | 5 | 2016-05-02T04:00:00Z | 2016-05-02T18:51:35Z | 0 | 0 | 0900006481fa0d5a |
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;