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 = "Rule" 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-0009 | FAA | None FAA-2005-22842 | Opportunity To Participate, Criteria Requirements and Application Procedure for Participation: Military Airport Program | Rule | Federal Register Publication | 2010-10-05T04:00:00Z | 2010 | 10 | 2010-10-05T04:00:00Z | 2010-12-07T04:59:59Z | 2018-03-23T17:37:06Z | 2010-24991 | 0 | 0 | 0900006480b67b3f |
| FAA-2005-22842-0008 | FAA | None FAA-2005-22842 | Opportunity To Participate, Criteria Requirements and Application Procedure for Participation: Military Airport Program | Rule | Federal Register Publication | 2009-09-04T04:00:00Z | 2009 | 9 | 2009-09-04T04:00:00Z | 2009-11-04T04:59:59Z | 2018-03-23T17:36:16Z | E9-21301 | 0 | 0 | 0900006480a1d36b |
| FAA-2005-22842-0007 | FAA | None FAA-2005-22842 | Notice of Opportunity To Participate, Criteria Requirements and Application Procedure for Participation in the Military Airport Program (MAP) | Rule | Federal Register Publication | 2008-09-09T04:00:00Z | 2008 | 9 | 2008-09-09T04:00:00Z | 2008-11-11T04:59:59Z | 2024-11-07T21:54:16Z | E8-20759 | 1 | 0 | 09000064806fa90c |
| FAA-2005-22842-0006 | FAA | None FAA-2005-22842 | Notice of Opportunity To Participate, Criteria Requirements and Application Procedure for Participation in the Military Airport Program (MAP) | Rule | Federal Register Publication | 2007-12-17T05:00:00Z | 2007 | 12 | 2007-12-17T05:00:00Z | 2008-02-16T04:59:59Z | 2024-11-07T21:47:43Z | 07-06068 | 1 | 0 | 090000648037b14e |
| FAA-2005-22842-0005 | FAA | None FAA-2005-22842 | U.S. DOT/FAA - Notice of Extension of Application Deadline for Participation in the Military Airport Program (MAP) for the Fiscal Year 2007 | Rule | Federal Register Publication | 2006-12-20T05:00:00Z | 2006 | 12 | 2006-12-20T05:00:00Z | 2006-12-21T04:59:59Z | 2024-11-11T22:24:08Z | 1 | 0 | 09000064802bcb9a | |
| FAA-2005-22842-0003 | FAA | None FAA-2005-22842 | US DOT/FAA - Notice of Criteria and Application Procedures for Designation or Redesignation, for the Fiscal Year 2006 MAP; Correction. | Rule | Federal Register Publication | 2006-10-25T04:00:00Z | 2006 | 10 | 2006-10-25T04:00:00Z | 2006-10-26T03:59:59Z | 2024-11-11T22:24:08Z | 1 | 0 | 09000064802bcb98 | |
| FAA-2005-22842-0002 | FAA | None FAA-2005-22842 | U.S. DOT/FAA - Notice of Criteria and Application Procedures for Designation or Redesignation, for the Fiscal Year 2006 MAP | Rule | Federal Register Publication | 2006-10-16T04:00:00Z | 2006 | 10 | 2006-10-16T04:00:00Z | 2006-10-17T03:59:59Z | 2024-11-11T22:24:08Z | 1 | 0 | 09000064802bcb97 | |
| FAA-2005-22842-0001 | FAA | None FAA-2005-22842 | U.S. DOT/FAA - Notice of Criteria and Application Procedures for Designation or Redesignation, for the Fiscal Year 2006 MAP | Rule | Federal Register Publication | 2005-11-01T05:00:00Z | 2005 | 11 | 2005-11-01T05:00:00Z | 2005-11-02T04:59:59Z | 2024-11-11T22:30:05Z | 1 | 0 | 09000064802bcb96 |
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;