documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2018-0835" and posted_year = 2019 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-0034 | FAA | None FAA-2018-0835 | Decision | Other | Decision | 2019-10-11T04:00:00Z | 2019 | 10 | 2019-10-11T04:00:00Z | 2019-10-11T20:11:35Z | 0 | 0 | 0900006484089772 | ||
| FAA-2018-0835-0028 | FAA | None FAA-2018-0835 | Petitions for Exemptions; Summaries: Wing Aviation, LLC; Correction | Notice | Correction | 2019-09-12T04:00:00Z | 2019 | 9 | 2019-09-12T04:00:00Z | 2019-09-21T03:59:59Z | 2024-11-12T23:07:44Z | 2019-19783 | 1 | 0 | 0900006483f43f56 |
| FAA-2018-0835-0027 | FAA | None FAA-2018-0835 | Petition for Exemption; Summary of Petition Received: Wing Aviation, LLC | Notice | Notice of Receipt of Petition | 2019-09-05T04:00:00Z | 2019 | 9 | 2019-09-05T04:00:00Z | 2019-09-21T03:59:59Z | 2024-11-12T23:08:19Z | 2019-19137 | 1 | 0 | 0900006483eed9ea |
| FAA-2018-0835-0026 | FAA | None FAA-2018-0835 | Wing Aviation LLC - Exemption/Rulemaking | Other | Petition(s) | 2019-08-15T04:00:00Z | 2019 | 8 | 2019-08-15T04:00:00Z | 2024-11-12T23:07:08Z | 1 | 0 | 0900006483e5622b | ||
| FAA-2018-0835-0025 | FAA | None FAA-2018-0835 | Wing Aviation LLC - Exemption/Rulemaking | Other | Petition(s) | 2019-06-24T04:00:00Z | 2019 | 6 | 2019-06-24T04:00:00Z | 2024-11-12T23:02:43Z | 1 | 0 | 0900006483d34566 | ||
| FAA-2018-0835-0024 | FAA | None FAA-2018-0835 | Correction - Wing Aviation LLC - 18162 | Other | Correction(s) | 2019-04-04T04:00:00Z | 2019 | 4 | 2019-04-04T04:00:00Z | 2019-04-04T17:56:52Z | 0 | 0 | 0900006483b6494e | ||
| FAA-2018-0835-0023 | FAA | None FAA-2018-0835 | U.S. DOT/FAA - Decision (Correction) | Other | Decision | 2019-04-02T04:00:00Z | 2019 | 4 | 2019-04-02T04:00:00Z | 2024-11-12T22:58:39Z | 1 | 0 | 0900006483b5a291 | ||
| FAA-2018-0835-0022 | FAA | None FAA-2018-0835 | Request for Additional Information | Other | Request | 2019-03-29T04:00:00Z | 2019 | 3 | 2019-03-29T04:00:00Z | 2024-11-12T22:58:36Z | 1 | 0 | 0900006483b489ba | ||
| FAA-2018-0835-0021 | FAA | None FAA-2018-0835 | Decision | Other | Decision | 2019-03-28T04:00:00Z | 2019 | 3 | 2019-03-28T04:00:00Z | 2019-03-28T19:45:01Z | 0 | 0 | 0900006483b3d8ba | ||
| FAA-2018-0835-0020 | FAA | None FAA-2018-0835 | Decision | Other | Decision | 2019-03-28T04:00:00Z | 2019 | 3 | 2019-03-28T04:00:00Z | 2019-03-28T17:48:44Z | 0 | 0 | 0900006483b3a2ad |
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;