documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2021-0009" 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-2021-0009-0010 | FAA | None FAA-2021-0009 | U.S. DOT/FAA - Decision | Other | Decision | 2025-04-25T04:00:00Z | 2025 | 4 | 2025-04-25T04:00:00Z | 2025-04-25T17:41:02Z | 1 | 0 | 0900006486abb47e | ||
| FAA-2021-0009-0009 | FAA | None FAA-2021-0009 | The Boeing Company - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2024-11-19T05:00:00Z | 2024 | 11 | 2024-11-19T05:00:00Z | 2024-11-19T17:57:55Z | 1 | 0 | 0900006486828b9b | ||
| FAA-2021-0009-0008 | FAA | None FAA-2021-0009 | U.S. DOT/FAA - Decision | Other | Decision | 2024-06-27T04:00:00Z | 2024 | 6 | 2024-06-27T04:00:00Z | 2024-11-12T22:36:25Z | 1 | 0 | 09000064865cf7e0 | ||
| FAA-2021-0009-0007 | FAA | None FAA-2021-0009 | The Boeing Company - Exemption/Rulemaking (Amendment) | Other | Amendment | 2023-12-12T05:00:00Z | 2023 | 12 | 2023-12-12T05:00:00Z | 2024-11-12T06:23:45Z | 1 | 0 | 0900006486329e62 | ||
| FAA-2021-0009-0006 | FAA | None FAA-2021-0009 | The Boeing Company - Exemption/Rulemaking | Other | 2021-12-09T00:00:00Z | 2021 | 12 | 2024-11-07T00:34:22Z | 0 | 1 | 0900006484eb331c | ||||
| FAA-2021-0009-0004 | FAA | None FAA-2021-0009 | Moved to FAA-2019-0749 | Other | Petition(s) | 2021-08-12T04:00:00Z | 2021 | 8 | 2021-08-12T04:00:00Z | 2024-11-12T23:33:01Z | 1 | 0 | 0900006484c4cee6 | ||
| FAA-2021-0009-0003 | FAA | None FAA-2021-0009 | Decision | Other | Decision | 2021-04-13T04:00:00Z | 2021 | 4 | 2021-04-13T04:00:00Z | 2021-04-13T17:18:28Z | 0 | 0 | 0900006484aa5095 | ||
| FAA-2021-0009-0002 | FAA | None FAA-2021-0009 | Request for Information | Other | Request | 2021-03-11T05:00:00Z | 2021 | 3 | 2021-03-11T05:00:00Z | 2021-03-11T14:39:17Z | 0 | 0 | 0900006484a67a14 | ||
| FAA-2021-0009-0001 | FAA | None FAA-2021-0009 | The Boeing Company - Exemption/Rulemaking | Other | Petition(s) | 2021-01-06T05:00:00Z | 2021 | 1 | 2021-01-06T05:00:00Z | 2024-11-06T23:45:08Z | 1 | 0 | 09000064849e13f5 |
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;