documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "FAA" and docket_id = "FAA-2017-0928" 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-0928-0010 | FAA | None FAA-2017-0928 | Withdrawal of Second Amended Complaint | Other | Withdrawal | 2018-10-22T04:00:00Z | 2018 | 10 | 2018-10-22T04:00:00Z | 2018-10-22T17:26:06Z | 0 | 0 | 090000648380bc93 | ||
| FAA-2017-0928-0009 | FAA | None FAA-2017-0928 | Dismisssal Order | Other | Order | 2018-10-10T04:00:00Z | 2018 | 10 | 2018-10-10T04:00:00Z | 2018-10-10T18:15:13Z | 0 | 0 | 09000064837b666e | ||
| FAA-2017-0928-0008 | FAA | None FAA-2017-0928 | Transcript of Hearing Held June 12, 2018 | Other | Transcript(s) | 2018-07-12T04:00:00Z | 2018 | 7 | 2018-07-12T04:00:00Z | 2018-07-12T18:49:40Z | 0 | 0 | 09000064834d9ffb | ||
| FAA-2017-0928-0007 | FAA | None FAA-2017-0928 | First Amended Complaint | Other | Complaint | 2018-02-05T05:00:00Z | 2018 | 2 | 2018-02-05T05:00:00Z | 2018-02-05T15:03:26Z | 0 | 0 | 0900006482ecfa7d | ||
| FAA-2017-0928-0006 | FAA | None FAA-2017-0928 | Complainant's Response to Respondent's Motion to Dismiss or, in the Alternative, to Strike and Answer to Complaint | Other | Response(s) | 2018-02-05T05:00:00Z | 2018 | 2 | 2018-02-05T05:00:00Z | 2018-02-05T15:01:11Z | 0 | 0 | 0900006482eeaacc | ||
| FAA-2017-0928-0005 | FAA | None FAA-2017-0928 | Notice of Assignment of Proceeding | Other | Adjudication Notice | 2018-01-30T05:00:00Z | 2018 | 1 | 2018-01-30T05:00:00Z | 2018-01-30T16:48:00Z | 0 | 0 | 0900006482e7d148 | ||
| FAA-2017-0928-0004 | FAA | None FAA-2017-0928 | Respondent's Motions to Dismiss or, in the Alternative, to Strike and to Answer Complaint | Other | Motion | 2018-01-29T05:00:00Z | 2018 | 1 | 2018-01-29T05:00:00Z | 2018-01-29T19:20:15Z | 0 | 0 | 0900006482e77371 | ||
| FAA-2017-0928-0003 | FAA | None FAA-2017-0928 | Respondent's Motions to Dismiss or, in the Alternative, to Strike and Answer to Complaint | Other | Motion | 2018-01-24T05:00:00Z | 2018 | 1 | 2018-01-24T05:00:00Z | 2018-01-24T16:49:49Z | 0 | 0 | 0900006482e54695 | ||
| FAA-2017-0928-0001 | FAA | None FAA-2017-0928 | Request for Hearing | Other | Request for Hearing | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-20T05:00:00Z | 2017-12-20T21:07:40Z | 0 | 0 | 0900006482d439c4 | ||
| FAA-2017-0928-0002 | FAA | None FAA-2017-0928 | Complaint | Other | Complaint | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-20T05:00:00Z | 2017-12-20T21:07:56Z | 0 | 0 | 0900006482d439dd |
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;