documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2020-0866" and posted_year = 2021 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-2020-0866-0014 | FAA | None FAA-2020-0866 | Jeffrey Lefever, President of Sunrise Aviation, Inc. - Petition for Leave to File Supplement to Record on the Basis of Newly Discovered Evidence (16-20-03) | Other | Petition(s) | 2021-12-30T05:00:00Z | 2021 | 12 | 2021-12-30T05:00:00Z | 2021-12-30T15:57:26Z | 0 | 0 | 0900006484f01418 | ||
| FAA-2020-0866-0013 | FAA | None FAA-2020-0866 | U.S. DOT/FAA - Notice of Extension of Time Dated December 10, 2021 (16-20-03) | Other | Extension of Time | 2021-12-22T05:00:00Z | 2021 | 12 | 2021-12-22T05:00:00Z | 2021-12-22T15:30:51Z | 0 | 0 | 0900006484ee28ac | ||
| FAA-2020-0866-0012 | FAA | None FAA-2020-0866 | City of Ormond Beach, Florida - Reply to the Appeal of Jeffrey Lefever, President, Sunrise Aviation, Inc. (16-20-03) | Other | Reply | 2021-10-26T04:00:00Z | 2021 | 10 | 2021-10-26T04:00:00Z | 2021-10-26T15:11:16Z | 0 | 0 | 0900006484df81bc | ||
| FAA-2020-0866-0011 | FAA | None FAA-2020-0866 | Jeffrey Lefever, President of Sunrise Aviation, Inc. - Notice of Appeal and Brief (16-20-03) | Other | Appeal | 2021-10-15T04:00:00Z | 2021 | 10 | 2021-10-15T04:00:00Z | 2021-10-15T18:59:28Z | 0 | 0 | 0900006484dc7822 | ||
| FAA-2020-0866-0010 | FAA | None FAA-2020-0866 | U.S. DOT/FAA - Director's Determination (16-20-03) | Other | Directors Determination | 2021-09-03T04:00:00Z | 2021 | 9 | 2021-09-03T04:00:00Z | 2021-09-03T14:06:15Z | 0 | 0 | 0900006484d4ab91 | ||
| FAA-2020-0866-0009 | FAA | None FAA-2020-0866 | U.S. DOT/FAA - Notice of Extension of Time Dated July 2, 2021 (16-20-03) | Other | Extension of Time | 2021-07-09T04:00:00Z | 2021 | 7 | 2021-07-09T04:00:00Z | 2021-07-09T18:17:12Z | 0 | 0 | 0900006484be0d1d | ||
| FAA-2020-0866-0008 | FAA | None FAA-2020-0866 | U.S. DOT/FAA - Notice of Extension of Time Dated May 21, 2021 (16-20-03) | Other | Extension of Time | 2021-05-26T04:00:00Z | 2021 | 5 | 2021-05-26T04:00:00Z | 2021-05-26T18:14:13Z | 0 | 0 | 0900006484b3a3a4 | ||
| FAA-2020-0866-0007 | FAA | None FAA-2020-0866 | U.S. DOT/FAA - Notice of Extension of Time Dated March 11, 2021 (16-20-03) | Other | Extension of Time | 2021-03-12T05:00:00Z | 2021 | 3 | 2021-03-12T05:00:00Z | 2021-03-12T13:40:59Z | 0 | 0 | 0900006484a68964 |
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;