documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2014-0116" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2014-0116-0049 | FAA | None FAA-2014-0116 | Order Denying The FAA's Motion for Decision and Setting Conference Date | Other | Order | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T05:00:00Z | 2017-12-15T16:08:15Z | 0 | 0 | 0900006482d1468d | ||
| FAA-2014-0116-0048 | FAA | None FAA-2014-0116 | Notice of Unavailability (original) | Other | Adjudication Notice | 2017-12-11T05:00:00Z | 2017 | 12 | 2017-12-11T05:00:00Z | 2017-12-11T18:27:12Z | 0 | 0 | 0900006482cf7cca | ||
| FAA-2014-0116-0047 | FAA | None FAA-2014-0116 | Order Considering and Denying The Respondent's Second Motion to Dismiss | Other | Order | 2017-12-07T05:00:00Z | 2017 | 12 | 2017-12-07T05:00:00Z | 2017-12-07T15:06:36Z | 0 | 0 | 0900006482ced40d | ||
| FAA-2014-0116-0046 | FAA | None FAA-2014-0116 | Notice of Unavailability (fax) | Other | Adjudication Notice | 2017-12-01T05:00:00Z | 2017 | 12 | 2017-12-01T05:00:00Z | 2017-12-01T16:38:49Z | 0 | 0 | 0900006482cc2a64 | ||
| FAA-2014-0116-0045 | FAA | None FAA-2014-0116 | Errata Order | Other | Order | 2017-10-11T04:00:00Z | 2017 | 10 | 2017-10-11T04:00:00Z | 2017-10-11T18:57:25Z | 0 | 0 | 0900006482bb62e1 | ||
| FAA-2014-0116-0044 | FAA | None FAA-2014-0116 | Order Clarifying the Record Regarding the Pending Summary Judgment Motion | Other | Order | 2017-08-10T04:00:00Z | 2017 | 8 | 2017-08-10T04:00:00Z | 2017-08-10T15:01:54Z | 0 | 0 | 09000064829f68c4 | ||
| FAA-2014-0116-0043 | FAA | None FAA-2014-0116 | U.S. DOT/OST - Order Finding Good Cause and Granting/Denying Other Relief | Other | Order | 2017-08-03T04:00:00Z | 2017 | 8 | 2017-08-03T04:00:00Z | 2017-08-03T20:25:54Z | 0 | 0 | 0900006482999f36 | ||
| FAA-2014-0116-0042 | FAA | None FAA-2014-0116 | U.S. DOT/FAA - Notice of Unavailability (original) | Other | Adjudication Notice | 2017-02-14T05:00:00Z | 2017 | 2 | 2017-02-14T05:00:00Z | 2017-02-14T19:42:30Z | 0 | 0 | 09000064824c0b9d | ||
| FAA-2014-0116-0041 | FAA | None FAA-2014-0116 | U.S. DOT/OST - Notice of Unavailability (fax) | Other | Adjudication Notice | 2017-02-07T05:00:00Z | 2017 | 2 | 2017-02-07T05:00:00Z | 2017-02-07T15:39:00Z | 0 | 0 | 09000064824aee80 |
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;