documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2015-3307" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2015-3307-0083 | FAA | None FAA-2015-3307 | Felts Field - EAJA Answer | Other | Answer | 2020-12-30T05:00:00Z | 2020 | 12 | 2020-12-30T05:00:00Z | 2020-12-30T19:03:37Z | 0 | 0 | 09000064849d2865 | ||
| FAA-2015-3307-0082 | FAA | None FAA-2015-3307 | Felts Field - EAJA Answer | Other | Answer | 2020-12-30T05:00:00Z | 2020 | 12 | 2020-12-30T05:00:00Z | 2020-12-30T16:50:25Z | 0 | 0 | 09000064849d1c79 | ||
| FAA-2015-3307-0081 | FAA | None FAA-2015-3307 | EAJA Application w Exhibits. EAJA No. Added | Other | Application | 2020-11-30T05:00:00Z | 2020 | 11 | 2020-11-30T05:00:00Z | 2020-11-30T15:09:43Z | 0 | 0 | 090000648497c12d | ||
| FAA-2015-3307-0080 | FAA | None FAA-2015-3307 | Decision and Order | Other | Decision | 2020-10-30T04:00:00Z | 2020 | 10 | 2020-10-30T04:00:00Z | 2020-10-30T13:43:18Z | 0 | 0 | 090000648494142f | ||
| FAA-2015-3307-0079 | FAA | None FAA-2015-3307 | FAA's Reply to Respondent's Motion to Dismiss Appeal | Other | Reply | 2020-09-04T04:00:00Z | 2020 | 9 | 2020-09-04T04:00:00Z | 2020-09-04T15:40:29Z | 0 | 0 | 09000064848454c3 | ||
| FAA-2015-3307-0077 | FAA | None FAA-2015-3307 | Respondent's Objection and Reply Brief to FAA's Appeal Brief | Other | Objection(s) | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-09-03T04:00:00Z | 2020-09-03T14:42:10Z | 0 | 0 | 0900006484840e55 | ||
| FAA-2015-3307-0078 | FAA | None FAA-2015-3307 | Respondent's Objection to the Complainant's Appeal Brief and Motion to Dismiss the Complainant's Appeal | Other | Objection(s) | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-09-03T04:00:00Z | 2020-09-04T14:58:45Z | 0 | 0 | 0900006484840e56 | ||
| FAA-2015-3307-0076 | FAA | None FAA-2015-3307 | FAA's Reply Brief on Appeal | Other | Brief | 2020-08-06T04:00:00Z | 2020 | 8 | 2020-08-06T04:00:00Z | 2020-08-06T17:30:41Z | 0 | 0 | 09000064847e035e | ||
| FAA-2015-3307-0075 | FAA | None FAA-2015-3307 | Respondent's Appeal Brief | Other | Brief | 2020-07-23T04:00:00Z | 2020 | 7 | 2020-07-23T04:00:00Z | 2020-07-23T15:09:42Z | 0 | 0 | 0900006484796d13 | ||
| FAA-2015-3307-0074 | FAA | None FAA-2015-3307 | Complainant's Notice of Appeal from Law Judge's Initial Decision | Other | Appeal | 2020-06-04T04:00:00Z | 2020 | 6 | 2020-06-04T04:00:00Z | 2020-06-04T14:02:31Z | 0 | 0 | 09000064846c8394 | ||
| FAA-2015-3307-0073 | FAA | None FAA-2015-3307 | Respondent's Notice of Appeal of Initial Decision | Other | Adjudication Notice | 2020-06-04T04:00:00Z | 2020 | 6 | 2020-06-04T04:00:00Z | 2020-06-04T14:00:49Z | 0 | 0 | 09000064846c8392 | ||
| FAA-2015-3307-0072 | FAA | None FAA-2015-3307 | Initial Decision | Other | Initial Decision | 2020-05-15T04:00:00Z | 2020 | 5 | 2020-05-15T04:00:00Z | 2020-05-15T17:25:45Z | 0 | 0 | 0900006484607318 |
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;