documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2010-1128" 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-2010-1128-0009 | FAA | None FAA-2010-1128 | U.S. DOT/FAA - Closeout Letter | Other | Decision | 2017-04-21T04:00:00Z | 2017 | 4 | 2017-04-21T04:00:00Z | 2017-04-21T20:14:03Z | 0 | 0 | 0900006482566e29 | ||
| FAA-2010-1128-0008 | FAA | None FAA-2010-1128 | Endeavor Air Inc. - Exemption/Rulemaking | Other | Petition(s) | 2017-01-09T05:00:00Z | 2017 | 1 | 2017-01-09T05:00:00Z | 2024-11-12T06:16:19Z | 1 | 0 | 0900006482450d7c | ||
| FAA-2010-1128-0007 | FAA | None FAA-2010-1128 | U.S. DOT/FAA - Decision | Other | Decision | 2015-01-30T05:00:00Z | 2015 | 1 | 2015-01-30T05:00:00Z | 2015-01-30T19:01:25Z | 0 | 0 | 09000064819e7eb0 | ||
| FAA-2010-1128-0006 | FAA | None FAA-2010-1128 | Endeavor Air, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2015-01-06T05:00:00Z | 2015 | 1 | 2015-01-06T05:00:00Z | 2015-01-06T15:16:54Z | 0 | 0 | 09000064819a3c3b | ||
| FAA-2010-1128-0005 | FAA | None FAA-2010-1128 | U.S. DOT/FAA - Decision | Other | Decision | 2012-12-28T05:00:00Z | 2012 | 12 | 2012-12-28T05:00:00Z | 2024-11-12T05:12:03Z | 1 | 0 | 090000648119c256 | ||
| FAA-2010-1128-0004 | FAA | None FAA-2010-1128 | Pinnacle Airlines, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2012-09-11T04:00:00Z | 2012 | 9 | 2012-09-11T04:00:00Z | 2024-11-11T20:43:45Z | 1 | 0 | 090000648110f6fb | ||
| FAA-2010-1128-0003 | FAA | None FAA-2010-1128 | U.S. DOT/FAA - Decision | Other | Decision | 2010-12-22T05:00:00Z | 2010 | 12 | 2010-12-22T05:00:00Z | 2013-08-11T03:12:18Z | 0 | 0 | 0900006480bbd59e | ||
| FAA-2010-1128-0002 | FAA | None FAA-2010-1128 | Pinnacle Airlines, Inc. - Supplemental Information | Other | Additional Information | 2010-11-18T05:00:00Z | 2010 | 11 | 2010-11-18T05:00:00Z | 2013-07-27T23:37:47Z | 0 | 0 | 0900006480b9881c | ||
| FAA-2010-1128-0001 | FAA | None FAA-2010-1128 | Pinnacle Airlines, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2010-11-08T05:00:00Z | 2010 | 11 | 2010-11-08T05:00:00Z | 2024-11-12T04:54:35Z | 1 | 0 | 0900006480b82c5f |
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;