documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2005-22842" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2005-22842-0017 | FAA | None FAA-2005-22842 | Funding Opportunities: Criteria and Application Procedures for Military Airport Program | Notice | Notice of Intent | 2018-04-09T04:00:00Z | 2018 | 4 | 2018-04-09T04:00:00Z | 2024-11-07T01:28:16Z | 2018-07228 | 1 | 0 | 09000064830dd240 | |
| FAA-2005-22842-0016 | FAA | None FAA-2005-22842 | Criteria and Application Procedures for Participation in the Military Airport Program | Notice | Notice of Docketing | 2016-12-07T05:00:00Z | 2016 | 12 | 2016-12-07T05:00:00Z | 2024-11-12T06:17:20Z | 2016-29318 | 1 | 0 | 09000064823e702f | |
| FAA-2005-22842-0015 | FAA | None FAA-2005-22842 | Criteria and Application Procedures for Participation in the Military Airport Program | Notice | Notice of Change | 2015-11-18T05:00:00Z | 2015 | 11 | 2015-11-18T05:00:00Z | 2015-11-18T15:29:57Z | 2015-29385 | 0 | 0 | 0900006481d5490e | |
| FAA-2005-22842-0014 | FAA | None FAA-2005-22842 | Opportunity to Participate: Criteria and Application Procedures for Participation in the Military Airport Program | Notice | Request for Applications | 2014-10-23T04:00:00Z | 2014 | 10 | 2014-10-23T04:00:00Z | 2024-11-11T20:54:24Z | 2014-25161 | 1 | 0 | 09000064818f71b9 | |
| FAA-2005-22842-0013 | FAA | None FAA-2005-22842 | Military Airport Program; Criteria and Application Procedures | Notice | Notice of Change | 2013-12-02T05:00:00Z | 2013 | 12 | 2013-12-02T05:00:00Z | 2013-12-02T15:44:21Z | 2013-28748 | 0 | 0 | 09000064814a21e8 | |
| FAA-2005-22842-0012 | FAA | None FAA-2005-22842 | Criteria Requirements and Application Procedure for Participation in Military Airport Program: Opportunity to Participate | Notice | Notice of Change | 2012-10-26T04:00:00Z | 2012 | 10 | 2012-10-26T04:00:00Z | 2024-11-11T20:43:35Z | 2012-26329 | 1 | 0 | 0900006481151c35 | |
| FAA-2005-22842-0011 | FAA | None FAA-2005-22842 | Opportunities to Participate, Criteria Requirements, and Application Procedures: MilitaryAirport Program | Notice | Notice of Change | 2012-03-15T04:00:00Z | 2012 | 3 | 2012-03-15T04:00:00Z | 2012-03-15T15:05:58Z | 2012-06350 | 0 | 0 | 0900006480fd7da4 | |
| FAA-2005-22842-0010 | FAA | None FAA-2005-22842 | Criteria Requirements and Application Procedure for Participation in the Military Airport Program | Notice | Notice of Change | 2011-09-22T04:00:00Z | 2011 | 9 | 2011-09-22T04:00:00Z | 2024-11-12T05:02:05Z | 2011-24350 | 1 | 0 | 0900006480f27208 |
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;