documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2018-0619" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
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-2018-0619-0013 | FAA | None FAA-2018-0619 | U.S. DOT/FAA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2026-02-26T05:00:00Z | 2026 | 2 | 2026-02-26T05:00:00Z | 2026-02-26T19:52:15Z | 1 | 0 | 09000064b91e0269 | ||
| FAA-2018-0619-0012 | FAA | None FAA-2018-0619 | Latitude Engineering, LLC - Exemption/Rulemaking (Amendment) | Other | Amendment | 2026-02-13T05:00:00Z | 2026 | 2 | 2026-02-13T05:00:00Z | 2026-02-13T17:54:04Z | 1 | 0 | 09000064b91a97b2 | ||
| FAA-2018-0619-0011 | FAA | None FAA-2018-0619 | U.S. DOT/FAA - Decision | Other | Decision | 2024-03-13T04:00:00Z | 2024 | 3 | 2024-03-13T04:00:00Z | 2024-11-12T22:27:56Z | 1 | 0 | 09000064864780e8 | ||
| FAA-2018-0619-0010 | FAA | None FAA-2018-0619 | Latitude Engineering, LLC - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2023-11-07T05:00:00Z | 2023 | 11 | 2023-11-07T05:00:00Z | 2024-11-12T06:21:55Z | 1 | 0 | 090000648621c875 | ||
| FAA-2018-0619-0009 | FAA | None FAA-2018-0619 | US DOT/FAA- Decision | Other | Decision | 2022-05-23T04:00:00Z | 2022 | 5 | 2022-05-23T04:00:00Z | 2022-05-23T19:24:04Z | 0 | 0 | 09000064850c94a8 | ||
| FAA-2018-0619-0008 | FAA | None FAA-2018-0619 | Decision | Other | Decision | 2021-11-15T05:00:00Z | 2021 | 11 | 2021-11-15T05:00:00Z | 2021-11-15T18:24:51Z | 0 | 0 | 0900006484e4c0ed | ||
| FAA-2018-0619-0007 | FAA | None FAA-2018-0619 | Latitude Engineering, LLC - Exemption/Rulemaking | Other | Petition(s) | 2021-10-04T04:00:00Z | 2021 | 10 | 2021-10-04T04:00:00Z | 2021-10-04T13:28:02Z | 0 | 0 | 0900006484db75f9 | ||
| FAA-2018-0619-0006 | FAA | None FAA-2018-0619 | Latitude Engineering, LLC - Exemption/Rulemaking | Other | Petition(s) | 2020-07-13T04:00:00Z | 2020 | 7 | 2020-07-13T04:00:00Z | 2024-11-06T23:38:12Z | 1 | 0 | 0900006484749ac1 | ||
| FAA-2018-0619-0005 | FAA | None FAA-2018-0619 | Decision | Other | Decision | 2019-11-06T05:00:00Z | 2019 | 11 | 2019-11-06T05:00:00Z | 2019-11-06T15:12:14Z | 0 | 0 | 0900006484121a47 | ||
| FAA-2018-0619-0004 | FAA | None FAA-2018-0619 | Record of Conversation and Request for Information | Other | Request | 2019-05-21T04:00:00Z | 2019 | 5 | 2019-05-21T04:00:00Z | 2024-11-12T23:00:58Z | 1 | 0 | 0900006483ca8acc | ||
| FAA-2018-0619-0003 | FAA | None FAA-2018-0619 | Petitions for Exemptions; Summaries: Latitude Engineering, LLC | Notice | Notice of Receipt of Petition | 2018-10-22T04:00:00Z | 2018 | 10 | 2019-02-12T05:00:00Z | 2018-11-14T04:59:59Z | 2024-11-12T22:55:02Z | 2018-23012 | 1 | 0 | 0900006483a68593 |
| FAA-2018-0619-0001 | FAA | None FAA-2018-0619 | Latitude Engineering, LLC - Exemption/Rulemaking | Other | Petition(s) | 2018-06-27T04:00:00Z | 2018 | 6 | 2018-06-27T04:00:00Z | 2024-11-07T01:33:11Z | 1 | 0 | 090000648346c0fd |
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;