documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2010-1052" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, 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-2010-1052-0011 | FAA | None FAA-2010-1052 | Hendry County Board of County Commissioners - Letter | Other | Letter(s) | 2010-12-15T05:00:00Z | 2010 | 12 | 2010-12-15T05:00:00Z | 2013-08-11T03:12:10Z | 0 | 0 | 0900006480bb6123 | ||
| FAA-2010-1052-0006 | FAA | None FAA-2010-1052 | Pre Application Section 1b- Land Disposition Memo of Law | Other | Additional Information | 2010-12-08T05:00:00Z | 2010 | 12 | 2010-12-08T05:00:00Z | 2013-07-27T23:37:41Z | 0 | 0 | 0900006480b95b15 | ||
| FAA-2010-1052-0005 | FAA | None FAA-2010-1052 | Pre Application Section 1 Parties to Transaction | Other | Additional Information | 2010-12-08T05:00:00Z | 2010 | 12 | 2010-12-08T05:00:00Z | 2013-07-27T23:37:43Z | 0 | 0 | 0900006480b9691a | ||
| FAA-2010-1052-0004 | FAA | None FAA-2010-1052 | FAA's Letter of Acceptance of Pre Application | Other | Letter(s) | 2010-12-08T05:00:00Z | 2010 | 12 | 2010-12-08T05:00:00Z | 2013-07-27T23:37:42Z | 0 | 0 | 0900006480b968e7 | ||
| FAA-2010-1052-0010 | FAA | None FAA-2010-1052 | Pre Application Section 6 Request for Proposals | Other | Additional Information | 2010-12-08T05:00:00Z | 2010 | 12 | 2010-12-08T05:00:00Z | 2013-07-27T23:37:41Z | 0 | 0 | 0900006480b95b3f | ||
| FAA-2010-1052-0008 | FAA | None FAA-2010-1052 | Pre Application Section 3 Process & Timeframe | Other | Other | 2010-12-08T05:00:00Z | 2010 | 12 | 2010-12-08T05:00:00Z | 2013-07-27T23:37:41Z | 0 | 0 | 0900006480b95b2e | ||
| FAA-2010-1052-0003 | FAA | None FAA-2010-1052 | Hendry County Response to FAA's Request for Additional Information for Pre Application | Other | Response(s) | 2010-12-08T05:00:00Z | 2010 | 12 | 2010-12-08T05:00:00Z | 2019-09-28T01:03:10Z | 0 | 0 | 0900006480b968e1 | ||
| FAA-2010-1052-0002 | FAA | None FAA-2010-1052 | FAA Request for Additional Information Regarding Hendry County's Pre-Application October 1, 2010 | Other | Request | 2010-12-08T05:00:00Z | 2010 | 12 | 2010-12-08T05:00:00Z | 2013-08-11T01:38:11Z | 0 | 0 | 0900006480b95ad8 | ||
| FAA-2010-1052-0009 | FAA | None FAA-2010-1052 | Pre Application Section 4 Airport Property Information | Other | Additional Information | 2010-12-08T05:00:00Z | 2010 | 12 | 2010-12-08T05:00:00Z | 2013-07-27T23:37:41Z | 0 | 0 | 0900006480b95b3c | ||
| FAA-2010-1052-0007 | FAA | None FAA-2010-1052 | Pre Application Section 2 Objectives of Privatization Initiative | Other | Additional Information | 2010-12-08T05:00:00Z | 2010 | 12 | 2010-12-08T05:00:00Z | 2013-07-27T23:37:41Z | 0 | 0 | 0900006480b95b17 | ||
| FAA-2010-1052-0001 | FAA | None FAA-2010-1052 | Airport Privatization Pilot Program | Rule | Federal Register Publication | 2010-11-04T04:00:00Z | 2010 | 11 | 2010-11-04T04:00:00Z | 2021-06-01T01:00:36Z | 2010-27896 | 0 | 0 | 0900006480b80c63 |
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;