documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2018-0835" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-2018-0835-0051 | FAA | None FAA-2018-0835 | Wing Aviation LLC - Exemption/Rulemaking | Other | Petition(s) | 2021-06-02T04:00:00Z | 2021 | 6 | 2021-06-02T04:00:00Z | 2024-11-12T23:31:09Z | 1 | 0 | 0900006484b50509 | ||
| FAA-2018-0835-0050 | FAA | None FAA-2018-0835 | Response to RFI | Other | Response(s) | 2021-05-26T04:00:00Z | 2021 | 5 | 2021-05-26T04:00:00Z | 2021-05-26T13:13:51Z | 0 | 0 | 0900006484b38a5d | ||
| FAA-2018-0835-0045 | FAA | None FAA-2018-0835 | U.S. DOT/FAA - Request for Additional Information | Other | Request | 2021-05-14T04:00:00Z | 2021 | 5 | 2021-05-14T04:00:00Z | 2024-11-12T23:30:58Z | 1 | 0 | 0900006484b0012f | ||
| FAA-2018-0835-0043 | FAA | None FAA-2018-0835 | Wing Aviation LLC - Exemption/Rulemaking | Other | Petition(s) | 2021-04-29T04:00:00Z | 2021 | 4 | 2021-04-29T04:00:00Z | 2024-11-06T23:46:43Z | 1 | 0 | 0900006484abc725 | ||
| FAA-2018-0835-0042 | FAA | None FAA-2018-0835 | ALPA - Request to Extend Comment Period | Other | Request | 2021-04-29T04:00:00Z | 2021 | 4 | 2021-04-29T04:00:00Z | 2024-11-06T23:47:08Z | 1 | 0 | 0900006484abc4ac | ||
| FAA-2018-0835-0044 | FAA | None FAA-2018-0835 | Decision | Other | Decision | 2021-04-29T04:00:00Z | 2021 | 4 | 2021-04-29T04:00:00Z | 2021-04-29T19:33:19Z | 0 | 0 | 0900006484abd1ad | ||
| FAA-2018-0835-0041 | FAA | None FAA-2018-0835 | Petition for Exemption; Summary: Wing Aviation, LLC | Notice | Notice of Availability | 2021-04-26T04:00:00Z | 2021 | 4 | 2021-04-26T04:00:00Z | 2021-05-18T03:59:59Z | 2024-11-06T23:45:50Z | 2021-08649 | 1 | 0 | 0900006484ab680f |
| FAA-2018-0835-0040 | FAA | None FAA-2018-0835 | Decision | Other | Decision | 2021-03-30T04:00:00Z | 2021 | 3 | 2021-03-30T04:00:00Z | 2021-03-30T19:09:39Z | 0 | 0 | 0900006484a8909b | ||
| FAA-2018-0835-0039 | FAA | None FAA-2018-0835 | Decision | Other | Decision | 2021-03-30T04:00:00Z | 2021 | 3 | 2021-03-30T04:00:00Z | 2021-03-30T17:50:22Z | 0 | 0 | 0900006484a889d6 | ||
| FAA-2018-0835-0038 | FAA | None FAA-2018-0835 | Wing Aviation LLC - Exemption/Rulemaking | Other | Petition(s) | 2021-03-29T04:00:00Z | 2021 | 3 | 2021-03-29T04:00:00Z | 2024-11-12T23:28:50Z | 1 | 0 | 0900006484a859b3 | ||
| FAA-2018-0835-0037 | FAA | None FAA-2018-0835 | Wing Aviation LLC - Exemption/Rulemaking | Other | Petition(s) | 2021-02-18T05:00:00Z | 2021 | 2 | 2021-02-18T05:00:00Z | 2021-02-18T21:42:04Z | 0 | 0 | 0900006484a3e4a7 | ||
| FAA-2018-0835-0036 | FAA | None FAA-2018-0835 | Moved to FAA-2015-3344 | Other | Petition(s) | 2021-02-12T05:00:00Z | 2021 | 2 | 2021-02-12T05:00:00Z | 2021-02-17T15:51:54Z | 0 | 0 | 0900006484a34a5c |
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;