documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FAA-2023-2570" 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-2023-2570-0007 | FAA | None FAA-2023-2570 | U.S. DOT/FAA - Decision | Other | Decision | 2025-09-11T04:00:00Z | 2025 | 9 | 2025-09-11T04:00:00Z | 2025-09-11T16:29:49Z | 1 | 0 | 09000064b8f691b1 | ||
| FAA-2023-2570-0006 | FAA | None FAA-2023-2570 | F & A Drone Services LLC - Exemption/Rulemaking (Amendment) | Other | Amendment | 2025-07-11T04:00:00Z | 2025 | 7 | 2025-07-11T04:00:00Z | 2025-10-11T14:17:37Z | 1 | 0 | 09000064b8e67b02 | ||
| FAA-2023-2570-0005 | FAA | None FAA-2023-2570 | U.S. DOT/FAA - Closeout Letter | Other | Letter(s) | 2025-06-10T04:00:00Z | 2025 | 6 | 2025-06-10T04:00:00Z | 2025-06-10T18:42:01Z | 1 | 0 | 09000064b8decfa3 | ||
| FAA-2023-2570-0004 | FAA | None FAA-2023-2570 | U.S. DOT/FAA - Request for Information | Other | Request | 2025-04-14T04:00:00Z | 2025 | 4 | 2025-04-14T04:00:00Z | 2025-04-14T16:20:45Z | 1 | 0 | 0900006486a8f17b | ||
| FAA-2023-2570-0003 | FAA | None FAA-2023-2570 | F & A Drone Services LLC - Exemption/Rulemaking (Amendment) | Other | Amendment | 2025-04-09T04:00:00Z | 2025 | 4 | 2025-04-09T04:00:00Z | 2025-04-09T17:11:49Z | 1 | 0 | 0900006486a81302 | ||
| FAA-2023-2570-0002 | FAA | None FAA-2023-2570 | U.S. DOT/FAA - Decision | Other | Decision | 2024-02-07T05:00:00Z | 2024 | 2 | 2024-02-07T05:00:00Z | 2024-11-12T22:22:46Z | 1 | 0 | 09000064863edc7a | ||
| FAA-2023-2570-0001 | FAA | None FAA-2023-2570 | F & A Drone Services LLC - Exemption/Rulemaking | Other | Petition(s) | 2023-12-28T05:00:00Z | 2023 | 12 | 2023-12-28T05:00:00Z | 2024-11-12T06:23:47Z | 1 | 0 | 0900006486364bae |
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;