documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2010-1052" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, open_for_comment, posted_date (date), comment_start_date (date), comment_end_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-2010-1052-0083 | FAA | None FAA-2010-1052 | Airport Investment Partnership Program | Notice | Notice of Availability | 2019-10-08T04:00:00Z | 2019 | 10 | 2019-10-08T04:00:00Z | 2024-11-12T23:09:58Z | 2019-21948 | 1 | 0 | 090000648405b1f4 | |
| FAA-2010-1052-0082 | FAA | None FAA-2010-1052 | Record of Decision. 2019.10.3 | Other | Decision | 2019-10-03T04:00:00Z | 2019 | 10 | 2019-10-03T04:00:00Z | 2019-10-03T17:40:49Z | 0 | 0 | 0900006484017536 | ||
| FAA-2010-1052-0068 | FAA | None FAA-2010-1052 | Airglades Second Supplement to Final Application (2019-09-18 6pm) | Other | Additional Information | 2019-09-19T04:00:00Z | 2019 | 9 | 2019-09-19T04:00:00Z | 2019-10-01T01:04:08Z | 0 | 0 | 0900006483f9e97d | ||
| FAA-2010-1052-0054 | FAA | None FAA-2010-1052 | Airglades - First Supplement to Final Application (2019-09-09) | Other | Additional Information | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2021-05-27T14:16:06Z | 0 | 0 | 0900006483f8d13b | ||
| FAA-2010-1052-0056 | FAA | None FAA-2010-1052 | Jennifer Davis - Support Letter | Other | Letter(s) in Support | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2019-09-17T18:40:04Z | 0 | 0 | 0900006483f8d13d | ||
| FAA-2010-1052-0057 | FAA | None FAA-2010-1052 | Southwest Florida Regional Planning Council - Letter in Support | Other | Letter(s) in Support | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2019-09-17T18:42:32Z | 0 | 0 | 0900006483f8d13e | ||
| FAA-2010-1052-0055 | FAA | None FAA-2010-1052 | Request for Additional Information | Other | Letter(s) | 2019-09-17T04:00:00Z | 2019 | 9 | 2019-09-17T04:00:00Z | 2019-09-17T18:40:59Z | 0 | 0 | 0900006483f8d13c | ||
| FAA-2010-1052-0021 | FAA | None FAA-2010-1052 | Airglades International Airport, LLC - Letter of Confirmation and County Resolution | Other | Letter(s) | 2019-08-20T04:00:00Z | 2019 | 8 | 2019-08-20T04:00:00Z | 2019-09-30T20:53:11Z | 0 | 0 | 0900006483e79bb6 | ||
| FAA-2010-1052-0020 | FAA | None FAA-2010-1052 | Airport Investment Partnership Program | Notice | Notice of Receipt of Petition | 2019-08-19T04:00:00Z | 2019 | 8 | 2019-08-19T04:00:00Z | 2019-09-19T03:59:59Z | 2019-09-30T20:52:46Z | 2019-17785 | 0 | 0 | 0900006483e6b81f |
| FAA-2010-1052-0019 | FAA | None FAA-2010-1052 | Airglades International Airport, LLC - Final Application with Appendices (August 8, 2019) | Other | Application | 2019-08-14T04:00:00Z | 2019 | 8 | 2019-08-14T04:00:00Z | 2024-11-12T23:06:48Z | 1 | 0 | 0900006483e4ee5f |
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;