documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2017-0929" 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-2017-0929-0009 | FAA | None FAA-2017-0929 | Answer | Other | Answer | 2018-12-11T05:00:00Z | 2018 | 12 | 2018-12-11T05:00:00Z | 2018-12-11T19:16:58Z | 0 | 0 | 09000064839833e5 | ||
| FAA-2017-0929-0008 | FAA | None FAA-2017-0929 | Dismissal Order | Other | Order | 2018-12-07T05:00:00Z | 2018 | 12 | 2018-12-07T05:00:00Z | 2018-12-07T19:28:50Z | 0 | 0 | 090000648395a320 | ||
| FAA-2017-0929-0007 | FAA | None FAA-2017-0929 | Order Granting Complainant's Renewed Motion to Deem Requests for Admission Admitted | Other | Order | 2018-10-31T04:00:00Z | 2018 | 10 | 2018-10-31T04:00:00Z | 2018-10-31T18:53:35Z | 0 | 0 | 09000064838763de | ||
| FAA-2017-0929-0006 | FAA | None FAA-2017-0929 | Order Granting in Part Complainant's Motion to Compel Discovery and to Deem Requests for Admission Admitted | Other | Order | 2018-09-12T04:00:00Z | 2018 | 9 | 2018-09-12T04:00:00Z | 2018-09-12T14:05:40Z | 0 | 0 | 09000064836d7f29 | ||
| FAA-2017-0929-0005 | FAA | None FAA-2017-0929 | Amended Complaint (original) - Redacted | Other | Complaint | 2018-09-04T04:00:00Z | 2018 | 9 | 2018-09-04T04:00:00Z | 2018-09-04T15:50:28Z | 0 | 0 | 0900006483679e63 | ||
| FAA-2017-0929-0004 | FAA | None FAA-2017-0929 | Complainant's Motion to Compel Discovery and to Deem Requests for Admission Admitted (original) | Other | Motion | 2018-07-12T04:00:00Z | 2018 | 7 | 2018-07-12T04:00:00Z | 2018-07-12T18:50:18Z | 0 | 0 | 09000064834da2ab | ||
| FAA-2017-0929-0003 | FAA | None FAA-2017-0929 | Joint Status Report Pursuant to Initial Procedural Order | Other | Report | 2018-04-18T04:00:00Z | 2018 | 4 | 2018-04-18T04:00:00Z | 2018-04-18T20:27:58Z | 0 | 0 | 0900006483170253 | ||
| FAA-2017-0929-0002 | FAA | None FAA-2017-0929 | Notice of Assignment of Proceeding | Other | Adjudication Notice | 2018-01-31T05:00:00Z | 2018 | 1 | 2018-01-31T05:00:00Z | 2018-01-31T19:24:48Z | 0 | 0 | 0900006482e85e8a | ||
| FAA-2017-0929-0001 | FAA | None FAA-2017-0929 | Complaint w/Request for Hearing (fax) | Other | Complaint | 2017-12-19T05:00:00Z | 2017 | 12 | 2017-12-19T05:00:00Z | 2017-12-19T16:45:25Z | 0 | 0 | 0900006482d31c8a |
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;