documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2017-0602" and posted_year = 2018 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-2017-0602-0019 | FAA | None FAA-2017-0602 | Order Finalizing Litgation's Schedule | Other | Order | 2018-12-20T05:00:00Z | 2018 | 12 | 2018-12-20T05:00:00Z | 2018-12-20T18:38:28Z | 0 | 0 | 09000064839b99bc | ||
| FAA-2017-0602-0017 | FAA | None FAA-2017-0602 | Order Granting Complainant's Motion for Decision in Part | Other | Order | 2018-12-20T05:00:00Z | 2018 | 12 | 2018-12-20T05:00:00Z | 2018-12-20T18:37:36Z | 0 | 0 | 09000064839b9967 | ||
| FAA-2017-0602-0018 | FAA | None FAA-2017-0602 | Notice of Hearing | Other | Hearing/Meeting Summary | 2018-12-20T05:00:00Z | 2018 | 12 | 2018-12-20T05:00:00Z | 2018-12-20T18:38:04Z | 0 | 0 | 09000064839b996d | ||
| FAA-2017-0602-0016 | FAA | None FAA-2017-0602 | Respondent's Opposition to Motion for Decision Redacted.pdf | Other | Motion | 2018-12-11T05:00:00Z | 2018 | 12 | 2018-12-11T05:00:00Z | 2018-12-11T20:22:18Z | 0 | 0 | 0900006483982fb1 | ||
| FAA-2017-0602-0015 | FAA | None FAA-2017-0602 | Order Cancelling Prehearing Conference | Other | Order | 2018-11-09T05:00:00Z | 2018 | 11 | 2018-11-09T05:00:00Z | 2018-11-09T20:31:16Z | 0 | 0 | 09000064838bf37b | ||
| FAA-2017-0602-0014 | FAA | None FAA-2017-0602 | Request for Oral Argument on Hearing for Motion for Decision | Other | Request | 2018-10-22T04:00:00Z | 2018 | 10 | 2018-10-22T04:00:00Z | 2018-10-22T15:56:41Z | 0 | 0 | 090000648380bcbe | ||
| FAA-2017-0602-0013 | FAA | None FAA-2017-0602 | Order Setting Prehearing Conference | Other | Order | 2018-10-16T04:00:00Z | 2018 | 10 | 2018-10-16T04:00:00Z | 2018-10-16T19:45:56Z | 0 | 0 | 09000064837f087d | ||
| FAA-2017-0602-0012 | FAA | None FAA-2017-0602 | Order Granting Respondent's Unopposed Request to Extend Date to Respond to Complainant's Motion for Decision | Other | Order | 2018-09-06T04:00:00Z | 2018 | 9 | 2018-09-06T04:00:00Z | 2018-09-06T19:30:29Z | 0 | 0 | 09000064836b1532 | ||
| FAA-2017-0602-0011 | FAA | None FAA-2017-0602 | Notice of Change of Address | Other | Adjudication Notice | 2018-08-28T04:00:00Z | 2018 | 8 | 2018-08-28T04:00:00Z | 2018-08-28T15:26:56Z | 0 | 0 | 090000648365e1fa | ||
| FAA-2017-0602-0010 | FAA | None FAA-2017-0602 | Motion for Decision (exhibits attached) | Other | Motion | 2018-08-28T04:00:00Z | 2018 | 8 | 2018-08-28T04:00:00Z | 2018-08-28T15:26:02Z | 0 | 0 | 090000648365e1f6 | ||
| FAA-2017-0602-0009 | FAA | None FAA-2017-0602 | Complainant & Respondent's Joint Response to Procedural Order (original) | Other | Response(s) | 2018-01-29T05:00:00Z | 2018 | 1 | 2018-01-29T05:00:00Z | 2018-01-29T19:18:04Z | 0 | 0 | 0900006482e77edb | ||
| FAA-2017-0602-0008 | FAA | None FAA-2017-0602 | Complainant & Respondent's Joint Response to Procedural Order (fax) | Other | Response(s) | 2018-01-22T05:00:00Z | 2018 | 1 | 2018-01-22T05:00:00Z | 2018-01-22T18:52:40Z | 0 | 0 | 0900006482e30603 |
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;