documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2016-8561" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FAA 12
| 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-2016-8561-0012 | FAA | None FAA-2016-8561 | U.S. DOT/FAA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2026-02-25T05:00:00Z | 2026 | 2 | 2026-02-25T05:00:00Z | 2026-02-26T00:17:54Z | 1 | 0 | 09000064b91dc63d | ||
| FAA-2016-8561-0011 | FAA | None FAA-2016-8561 | Boeing - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2026-02-23T05:00:00Z | 2026 | 2 | 2026-02-23T05:00:00Z | 2026-02-23T18:56:15Z | 1 | 0 | 09000064b91cfd71 | ||
| FAA-2016-8561-0010 | FAA | None FAA-2016-8561 | U.S. DOT/FAA - Decision | Other | Decision | 2024-01-05T05:00:00Z | 2024 | 1 | 2024-01-05T05:00:00Z | 2026-02-28T12:47:35Z | 1 | 0 | 090000648637f4bd | ||
| FAA-2016-8561-0009 | FAA | None FAA-2016-8561 | Boeing - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2023-09-25T04:00:00Z | 2023 | 9 | 2023-09-25T04:00:00Z | 2024-11-07T00:52:50Z | 1 | 0 | 0900006485ff2a43 | ||
| FAA-2016-8561-0008 | FAA | None FAA-2016-8561 | Decision | Other | Decision | 2021-03-17T04:00:00Z | 2021 | 3 | 2021-03-17T04:00:00Z | 2021-03-17T19:19:03Z | 0 | 0 | 0900006484a6e9ee | ||
| FAA-2016-8561-0007 | FAA | None FAA-2016-8561 | Boeing - Exemption/Rulemaking | Other | Petition(s) | 2021-01-27T05:00:00Z | 2021 | 1 | 2021-01-27T05:00:00Z | 2024-11-06T23:45:16Z | 1 | 0 | 0900006484a08a36 | ||
| FAA-2016-8561-0006 | FAA | None FAA-2016-8561 | U.S. DOT/FAA - Decision | Other | Decision | 2017-05-31T04:00:00Z | 2017 | 5 | 2017-05-31T04:00:00Z | 2017-05-31T18:36:38Z | 0 | 0 | 09000064826706cb | ||
| FAA-2016-8561-0005 | FAA | None FAA-2016-8561 | Boeing - Additional Information | Other | Additional Information | 2016-12-27T05:00:00Z | 2016 | 12 | 2016-12-27T05:00:00Z | 2016-12-27T15:49:57Z | 0 | 0 | 09000064824351c0 | ||
| FAA-2016-8561-0004 | FAA | None FAA-2016-8561 | Boeing EFO Record of Telecon Update 10272016 | Other | Record of Meeting/Phone Conversation | 2016-11-14T05:00:00Z | 2016 | 11 | 2016-11-14T05:00:00Z | 2016-11-14T17:03:50Z | 0 | 0 | 0900006482384f81 | ||
| FAA-2016-8561-0003 | FAA | None FAA-2016-8561 | Boeing Public Interest Statement | Supporting & Related Material | Supplement | 2016-11-14T05:00:00Z | 2016 | 11 | 2016-11-14T16:59:57Z | 0 | 0 | 09000064823852e6 | |||
| FAA-2016-8561-0002 | FAA | None FAA-2016-8561 | Petitions for Exemptions; Summaries: Boeing Executive Flight Operations | Notice | Notice of Docketing | 2016-08-12T04:00:00Z | 2016 | 8 | 2016-08-12T04:00:00Z | 2016-09-02T03:59:59Z | 2024-11-12T06:12:14Z | 2016-19237 | 1 | 0 | 0900006482170b98 |
| FAA-2016-8561-0001 | FAA | None FAA-2016-8561 | Boeing - Exemption/Rulemaking | Other | Petition(s) | 2016-07-13T04:00:00Z | 2016 | 7 | 2016-07-13T04:00:00Z | 2024-11-12T06:07:49Z | 1 | 0 | 0900006482012ba4 |
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;