documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2015-2369" 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-2015-2369-0011 | FAA | None FAA-2015-2369 | U.S. DOT/FAA - Decision | Other | Decision | 2025-05-01T04:00:00Z | 2025 | 5 | 2025-05-01T04:00:00Z | 2025-05-21T20:36:24Z | 1 | 0 | 09000064b8ce851e | ||
| FAA-2015-2369-0010 | FAA | None FAA-2015-2369 | Alaska Airlines - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2025-03-07T05:00:00Z | 2025 | 3 | 2025-03-07T05:00:00Z | 2025-03-07T13:54:09Z | 1 | 0 | 09000064869b7baa | ||
| FAA-2015-2369-0009 | FAA | None FAA-2015-2369 | U.S. DOT/FAA - Decision | Other | Decision | 2023-06-22T04:00:00Z | 2023 | 6 | 2023-06-22T04:00:00Z | 2024-11-07T01:04:42Z | 1 | 0 | 0900006485bb5a25 | ||
| FAA-2015-2369-0008 | FAA | None FAA-2015-2369 | Alaska Airlines - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2023-04-04T04:00:00Z | 2023 | 4 | 2023-04-04T04:00:00Z | 2024-11-12T23:53:54Z | 1 | 0 | 09000064858de2c1 | ||
| FAA-2015-2369-0007 | FAA | None FAA-2015-2369 | Decision | Other | Decision | 2019-07-02T04:00:00Z | 2019 | 7 | 2019-07-02T04:00:00Z | 2019-07-02T14:21:53Z | 0 | 0 | 0900006483d56b46 | ||
| FAA-2015-2369-0006 | FAA | None FAA-2015-2369 | Alaska Airlines - Exemption/Rulemaking | Other | Petition(s) | 2018-12-18T05:00:00Z | 2018 | 12 | 2018-12-18T05:00:00Z | 2024-11-12T22:52:13Z | 1 | 0 | 09000064839aa9f1 | ||
| FAA-2015-2369-0005 | FAA | None FAA-2015-2369 | U.S. DOT/FAA - Decision | Other | Decision | 2017-09-21T04:00:00Z | 2017 | 9 | 2017-09-21T04:00:00Z | 2024-11-07T01:17:16Z | 1 | 0 | 0900006482b6ab86 | ||
| FAA-2015-2369-0004 | FAA | None FAA-2015-2369 | Alaska Airlines, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2017-06-12T04:00:00Z | 2017 | 6 | 2017-06-12T04:00:00Z | 2024-11-07T01:01:18Z | 1 | 0 | 09000064826c7c09 | ||
| FAA-2015-2369-0003 | FAA | None FAA-2015-2369 | U.S. DOT/FAA - Decision | Other | Decision | 2016-05-23T04:00:00Z | 2016 | 5 | 2016-05-23T04:00:00Z | 2024-11-11T21:21:22Z | 1 | 0 | 0900006481df776d | ||
| FAA-2015-2369-0002 | FAA | None FAA-2015-2369 | Alaska Airlines - Boeing Airplane Flight Manual | Other | Additional Information | 2015-06-29T04:00:00Z | 2015 | 6 | 2015-06-29T04:00:00Z | 2024-11-11T21:02:42Z | 1 | 0 | 0900006481b57c79 | ||
| FAA-2015-2369-0001 | FAA | None FAA-2015-2369 | Alaska Airlines - Exemption/Rulemaking | Other | Petition(s) | 2015-06-18T04:00:00Z | 2015 | 6 | 2015-06-18T04:00:00Z | 2025-03-08T22:14:33Z | 1 | 0 | 0900006481b16f22 |
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;