documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2018-0663" and posted_year = 2021 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-2018-0663-0024 | FAA | None FAA-2018-0663 | Order of Dismissal | Other | Order | 2021-10-13T04:00:00Z | 2021 | 10 | 2021-10-22T04:00:00Z | 2021-10-22T12:03:18Z | 0 | 0 | 0900006484ddd095 | ||
| FAA-2018-0663-0023 | FAA | None FAA-2018-0663 | Letter 3 - 2nd Extension Granted | Other | Decision | 2021-08-23T04:00:00Z | 2021 | 8 | 2021-08-23T04:00:00Z | 2021-08-23T18:58:15Z | 0 | 0 | 0900006484c9cacb | ||
| FAA-2018-0663-0022 | FAA | None FAA-2018-0663 | Respondent's Request for Appeal Perfection Extension | Other | Request | 2021-08-23T04:00:00Z | 2021 | 8 | 2021-08-23T04:00:00Z | 2021-08-23T15:05:37Z | 0 | 0 | 0900006484c9ca34 | ||
| FAA-2018-0663-0021 | FAA | None FAA-2018-0663 | Letter 2 - Extension Granted | Other | Letter(s) | 2021-06-15T04:00:00Z | 2021 | 6 | 2021-06-15T04:00:00Z | 2021-06-15T18:00:14Z | 0 | 0 | 0900006484b80b6c | ||
| FAA-2018-0663-0020 | FAA | None FAA-2018-0663 | Respondent's Unopposed Request for Appeal Perfection Extension | Other | Request | 2021-06-15T04:00:00Z | 2021 | 6 | 2021-06-15T04:00:00Z | 2021-06-15T17:59:19Z | 0 | 0 | 0900006484b80a5e | ||
| FAA-2018-0663-0019 | FAA | None FAA-2018-0663 | Initial Decision | Other | Initial Decision | 2021-05-11T04:00:00Z | 2021 | 5 | 2021-05-11T04:00:00Z | 2021-05-11T12:58:23Z | 0 | 0 | 0900006484ae3cbc | ||
| FAA-2018-0663-0018 | FAA | None FAA-2018-0663 | Order Regarding Submission of Evidence | Other | Order | 2021-03-12T05:00:00Z | 2021 | 3 | 2021-03-12T05:00:00Z | 2021-03-12T18:25:29Z | 0 | 0 | 0900006484a6782f | ||
| FAA-2018-0663-0016 | FAA | None FAA-2018-0663 | Notice of Hearing | Other | Adjudication Notice | 2021-02-11T05:00:00Z | 2021 | 2 | 2021-02-11T05:00:00Z | 2021-02-11T21:32:16Z | 0 | 0 | 0900006484a335b7 | ||
| FAA-2018-0663-0017 | FAA | None FAA-2018-0663 | Order Finalizing Litigation Schedule | Other | Order | 2021-02-11T05:00:00Z | 2021 | 2 | 2021-02-11T05:00:00Z | 2021-02-11T21:32:58Z | 0 | 0 | 0900006484a3397c | ||
| FAA-2018-0663-0015 | FAA | None FAA-2018-0663 | Prehearing Conference Report | Other | Report | 2021-01-13T05:00:00Z | 2021 | 1 | 2021-01-13T05:00:00Z | 2021-01-13T20:36:06Z | 0 | 0 | 09000064849f1735 | ||
| FAA-2018-0663-0014 | FAA | None FAA-2018-0663 | Order Setting Prehearing Conference | Other | Order | 2021-01-04T05:00:00Z | 2021 | 1 | 2021-01-04T05:00:00Z | 2021-01-04T18:04:42Z | 0 | 0 | 09000064849dc118 |
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;