documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2021-0673" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_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-2021-0673-0018 | FAA | None FAA-2021-0673 | The Boeing Company - Exemption/Rulemaking (Response) | Other | Response(s) | 2025-11-04T05:00:00Z | 2025 | 11 | 2025-11-04T05:00:00Z | 2025-11-05T01:36:12Z | 1 | 0 | 09000064b906905e | ||
| FAA-2021-0673-0012 | FAA | None FAA-2021-0673 | U.S. DOT/FAA - Acknowledgement Letter | Other | Letter(s) | 2025-05-15T04:00:00Z | 2025 | 5 | 2025-05-15T04:00:00Z | 2025-05-21T22:07:48Z | 1 | 0 | 09000064b8d5601d | ||
| FAA-2021-0673-0011 | FAA | None FAA-2021-0673 | The Boeing Company - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2025-05-14T04:00:00Z | 2025 | 5 | 2025-05-14T04:00:00Z | 2025-06-07T09:00:16Z | 1 | 0 | 09000064b8d4c853 | ||
| FAA-2021-0673-0010 | FAA | None FAA-2021-0673 | The Boeing Company - Exemption/Rulemaking (Extension) | Other | Petition(s) | 2025-05-02T04:00:00Z | 2025 | 5 | 2025-05-02T04:00:00Z | 2025-07-08T09:00:17Z | 1 | 0 | 09000064b8cf5ead | ||
| FAA-2021-0673-0009 | FAA | None FAA-2021-0673 | Decision | Other | Decision | 2022-03-08T05:00:00Z | 2022 | 3 | 2022-03-08T05:00:00Z | 2022-03-08T15:20:12Z | 0 | 0 | 0900006484fbe5c5 | ||
| FAA-2021-0673-0008 | FAA | None FAA-2021-0673 | The Boeing Company - Updated Statement of No Adverse Effect on Safety | Other | Correspondence | 2021-12-21T05:00:00Z | 2021 | 12 | 2021-12-21T05:00:00Z | 2024-11-07T00:35:38Z | 1 | 0 | 0900006484ed3dc0 | ||
| FAA-2021-0673-0007 | FAA | None FAA-2021-0673 | The Boeing Company - Response to Request for Information | Other | Response(s) | 2021-12-09T05:00:00Z | 2021 | 12 | 2021-12-09T05:00:00Z | 2024-11-07T00:34:32Z | 1 | 0 | 0900006484eb148e | ||
| FAA-2021-0673-0006 | FAA | None FAA-2021-0673 | U.S. DOT/FAA - Request for Information | Other | Request | 2021-11-26T05:00:00Z | 2021 | 11 | 2021-11-26T05:00:00Z | 2024-11-12T23:34:43Z | 1 | 0 | 0900006484e7e104 | ||
| FAA-2021-0673-0003 | FAA | None FAA-2021-0673 | Petition for Exemption; Summary: The Boeing Co. | Notice | Notice of Receipt of Petition | 2021-10-14T04:00:00Z | 2021 | 10 | 2021-10-14T04:00:00Z | 2021-11-04T03:59:59Z | 2024-11-07T00:31:38Z | 2021-22445 | 1 | 0 | 0900006484dc52db |
| FAA-2021-0673-0002 | FAA | None FAA-2021-0673 | The Boeing Company - Exemption/Rulemaking (Replacement) | Other | Petition(s) | 2021-08-10T04:00:00Z | 2021 | 8 | 2021-08-10T04:00:00Z | 2024-11-06T23:50:47Z | 1 | 0 | 0900006484c3d45f | ||
| FAA-2021-0673-0001 | FAA | None FAA-2021-0673 | The Boeing Company - Exemption/Rulemaking | Other | Petition(s) | 2021-07-30T04:00:00Z | 2021 | 7 | 2021-07-30T04:00:00Z | 2024-11-06T23:49:26Z | 1 | 0 | 0900006484c1a46f |
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;