documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2019-0463" 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-2019-0463-0020 | FAA | None FAA-2019-0463 | U.S. DOT/FAA - Decision | Other | Decision | 2023-10-05T04:00:00Z | 2023 | 10 | 2023-10-05T04:00:00Z | 2024-11-07T00:53:58Z | 1 | 0 | 090000648603d5a9 | ||
| FAA-2019-0463-0019 | FAA | None FAA-2019-0463 | Helinet Aviation Services, LLC - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2023-06-29T04:00:00Z | 2023 | 6 | 2023-06-29T04:00:00Z | 2024-11-12T05:50:20Z | 1 | 0 | 0900006485c0c283 | ||
| FAA-2019-0463-0018 | FAA | None FAA-2019-0463 | Decision | Other | Decision | 2021-06-14T04:00:00Z | 2021 | 6 | 2021-06-14T04:00:00Z | 2021-06-14T20:30:27Z | 0 | 0 | 0900006484b7c226 | ||
| FAA-2019-0463-0017 | FAA | None FAA-2019-0463 | 12-2-2020 Record of Conversation | Other | Record of Meeting/Phone Conversation | 2020-12-15T05:00:00Z | 2020 | 12 | 2020-12-15T05:00:00Z | 2020-12-15T18:53:09Z | 0 | 0 | 09000064849a010a | ||
| FAA-2019-0463-0016 | FAA | None FAA-2019-0463 | Request for Information Extension | Other | Request | 2020-04-14T04:00:00Z | 2020 | 4 | 2020-04-14T04:00:00Z | 2024-11-06T23:34:43Z | 1 | 0 | 09000064844a3f02 | ||
| FAA-2019-0463-0015 | FAA | None FAA-2019-0463 | Confirmation of Response to 4th RFI | Other | Additional Information | 2020-03-31T04:00:00Z | 2020 | 3 | 2020-03-31T04:00:00Z | 2020-03-31T17:31:40Z | 0 | 0 | 090000648447c502 | ||
| FAA-2019-0463-0014 | FAA | None FAA-2019-0463 | 3-17-2020 Record of Call | Other | Record of Meeting/Phone Conversation | 2020-03-19T04:00:00Z | 2020 | 3 | 2020-03-19T04:00:00Z | 2020-03-19T17:39:48Z | 0 | 0 | 09000064844567e0 | ||
| FAA-2019-0463-0013 | FAA | None FAA-2019-0463 | Request for Additional Information | Other | Request | 2020-03-03T05:00:00Z | 2020 | 3 | 2020-03-03T05:00:00Z | 2024-11-06T23:32:21Z | 1 | 0 | 09000064843deaf0 | ||
| FAA-2019-0463-0012 | FAA | None FAA-2019-0463 | Helinet Aviation Services LLC Response to 4th RFI | Other | Response(s) | 2020-01-21T05:00:00Z | 2020 | 1 | 2020-01-21T05:00:00Z | 2020-01-21T18:55:41Z | 0 | 0 | 09000064842cca1b | ||
| FAA-2019-0463-0004 | FAA | None FAA-2019-0463 | Helinet Aviation Services LLC - Exemption/Rulemaking (Amendment) | Other | Petition(s) | 2019-08-26T04:00:00Z | 2019 | 8 | 2019-08-26T04:00:00Z | 2019-08-26T15:23:41Z | 0 | 0 | 0900006483eb3120 | ||
| FAA-2019-0463-0002 | FAA | None FAA-2019-0463 | U.S. DOT/FAA - Request for Additional Information | Other | Request | 2019-07-16T04:00:00Z | 2019 | 7 | 2019-07-16T04:00:00Z | 2024-11-12T23:04:52Z | 1 | 0 | 0900006483d9609a | ||
| FAA-2019-0463-0001 | FAA | None FAA-2019-0463 | Helinet Aviation Services, LLC - Exemption/Rulemaking | Other | Petition(s) | 2019-06-11T04:00:00Z | 2019 | 6 | 2019-06-11T04:00:00Z | 2024-11-12T23:02:50Z | 1 | 0 | 0900006483cff7a1 |
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;