documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2008-0036" and document_type = "Other" 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-2008-0036-0103 | FAA | None FAA-2008-0036 | U.S. DOT/FAA - NEXTOR Congestion Management Project: Interim Report | Other | Report | 2008-10-30T04:00:00Z | 2008 | 10 | 2008-10-30T04:00:00Z | 2024-11-07T21:58:39Z | 1 | 0 | 0900006480785f83 | ||
| FAA-2008-0036-0102 | FAA | None FAA-2008-0036 | Manchester-Boston Regional Airport - Letter re: Amendment to FAA Rates and Charges Policy | Other | Letter(s) | 2008-10-30T04:00:00Z | 2008 | 10 | 2008-10-30T04:00:00Z | 2013-08-11T04:29:25Z | 0 | 0 | 0900006480785c57 | ||
| FAA-2008-0036-0100 | FAA | None FAA-2008-0036 | U.S. DOT/FAA - Notice of Amendment to Policy Statement Regarding Airport Rates and Charges (Original) | Other | Adjudication Notice | 2008-07-10T04:00:00Z | 2008 | 7 | 2008-07-10T04:00:00Z | 2013-08-11T04:26:49Z | 0 | 0 | 0900006480664847 | ||
| FAA-2008-0036-0023 | FAA | None FAA-2008-0036 | Holland & Knight LLP - Request to Withdraw Comments | Other | Request | 2008-03-03T05:00:00Z | 2008 | 3 | 2008-01-11T05:00:00Z | 2024-11-12T04:10:57Z | 1 | 0 | 09000064803e554f | ||
| FAA-2008-0036-0020 | FAA | None FAA-2008-0036 | U.S. DOT/FAA - Fact 2 Report | Other | Report | 2008-02-29T05:00:00Z | 2008 | 2 | 2008-02-29T05:00:00Z | 2013-07-27T20:36:31Z | 0 | 0 | 09000064803d1359 | ||
| FAA-2008-0036-0013 | FAA | None FAA-2008-0036 | International Air Transport Association - Request to Extend Comment Period | Other | Request | 2008-02-05T05:00:00Z | 2008 | 2 | 2008-02-05T05:00:00Z | 2024-11-07T01:40:45Z | 1 | 0 | 09000064803a81ac | ||
| FAA-2008-0036-0012 | FAA | None FAA-2008-0036 | AOPA & NBAA - Request for Extension of Comment Period | Other | Request | 2008-02-01T05:00:00Z | 2008 | 2 | 2008-01-11T05:00:00Z | 2024-11-07T21:50:33Z | 1 | 0 | 09000064803a681f | ||
| FAA-2008-0036-0011 | FAA | None FAA-2008-0036 | Air Transport Association of America, Inc. - Request for Extension of Comment Period | Other | Request | 2008-01-31T05:00:00Z | 2008 | 1 | 2008-01-11T05:00:00Z | 2024-11-07T01:41:05Z | 1 | 0 | 09000064803a535f | ||
| FAA-2008-0036-0009 | FAA | None FAA-2008-0036 | U.S. DOT/FAA - Benchmark Table | Other | Other | 2008-01-28T05:00:00Z | 2008 | 1 | 2008-01-28T05:00:00Z | 2024-11-08T03:47:22Z | 1 | 0 | 09000064803a3b9b | ||
| FAA-2008-0036-0008 | FAA | None FAA-2008-0036 | U.S. DOT/FAA - Congested Airports | Other | Other | 2008-01-28T05:00:00Z | 2008 | 1 | 2008-01-28T05:00:00Z | 2024-11-11T21:37:38Z | 1 | 0 | 09000064803a3b8f | ||
| FAA-2008-0036-0007 | FAA | None FAA-2008-0036 | U.S. DOT/FAA - Appendix to the Notice | Other | Other | 2008-01-23T05:00:00Z | 2008 | 1 | 2008-01-23T05:00:00Z | 2024-11-08T03:47:42Z | 1 | 0 | 09000064803a09d2 | ||
| FAA-2008-0036-0004 | FAA | None FAA-2008-0036 | U.S.DOT/FAA - Policy Statement | Other | Other | 2008-01-18T05:00:00Z | 2008 | 1 | 2008-01-18T05:00:00Z | 2024-11-07T01:40:37Z | 1 | 0 | 090000648039d81c |
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;