documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2017-0780" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, open_for_comment, posted_date (date), comment_start_date (date), last_modified (date)
| 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-2017-0780-0011 | FAA | None FAA-2017-0780 | U.S. DOT/FAA - Decision | Other | Decision | 2026-01-14T05:00:00Z | 2026 | 1 | 2026-01-14T05:00:00Z | 2026-01-14T18:49:27Z | 1 | 0 | 09000064b913c0af | ||
| FAA-2017-0780-0009 | FAA | None FAA-2017-0780 | Eastern Airlines, LLC - Notice of Intent | Other | Letter(s) | 2025-12-23T05:00:00Z | 2025 | 12 | 2025-12-23T05:00:00Z | 2025-12-24T01:57:00Z | 1 | 0 | 09000064b91083e3 | ||
| FAA-2017-0780-0010 | FAA | None FAA-2017-0780 | Eastern Airlines, LLC - Notice of Intent | Other | Letter(s) | 2025-12-23T05:00:00Z | 2025 | 12 | 2025-12-23T05:00:00Z | 2025-12-24T01:57:43Z | 1 | 0 | 09000064b91083e0 | ||
| FAA-2017-0780-0008 | FAA | None FAA-2017-0780 | Ameristar Air Cargo, Inc. - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2025-11-24T05:00:00Z | 2025 | 11 | 2025-11-24T05:00:00Z | 2025-11-24T19:37:34Z | 1 | 0 | 09000064b908e7b1 | ||
| FAA-2017-0780-0007 | FAA | None FAA-2017-0780 | U.S. DOT/FAA - Decision | Other | Decision | 2024-01-24T05:00:00Z | 2024 | 1 | 2024-01-24T05:00:00Z | 2025-11-29T12:02:12Z | 1 | 0 | 09000064863bee06 | ||
| FAA-2017-0780-0006 | FAA | None FAA-2017-0780 | Airlines for America/National Air Carrier Association/Regional Airline Association - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2023-10-13T04:00:00Z | 2023 | 10 | 2023-10-13T04:00:00Z | 2024-11-07T00:54:14Z | 1 | 0 | 09000064860cdf01 | ||
| FAA-2017-0780-0005 | FAA | None FAA-2017-0780 | Revised Attachment 1 | Other | Amendment | 2020-01-21T05:00:00Z | 2020 | 1 | 2020-01-21T05:00:00Z | 2020-01-21T15:34:13Z | 0 | 0 | 09000064842c994d | ||
| FAA-2017-0780-0004 | FAA | None FAA-2017-0780 | Decision | Other | Decision | 2020-01-16T05:00:00Z | 2020 | 1 | 2020-01-16T05:00:00Z | 2020-01-16T20:13:06Z | 0 | 0 | 09000064842b0085 | ||
| FAA-2017-0780-0003 | FAA | None FAA-2017-0780 | Ameristar Air Cargo, Inc.. - Exemption/Rulemaking | Other | Petition(s) | 2019-12-10T05:00:00Z | 2019 | 12 | 2019-12-10T05:00:00Z | 2019-12-10T15:51:39Z | 0 | 0 | 09000064841fa7e4 | ||
| FAA-2017-0780-0002 | FAA | None FAA-2017-0780 | U.S. DOT/FAA - Decision | Other | Decision | 2017-11-09T05:00:00Z | 2017 | 11 | 2017-11-09T05:00:00Z | 2017-11-09T16:24:57Z | 0 | 0 | 0900006482c611ae | ||
| FAA-2017-0780-0001 | FAA | None FAA-2017-0780 | Ameristar Air Cargo, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2017-07-31T04:00:00Z | 2017 | 7 | 2017-07-31T04:00:00Z | 2024-11-07T01:03:27Z | 1 | 0 | 0900006482980c0b |
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;