documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2019-0829" 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-0829-0009 | FAA | None FAA-2019-0829 | U.S. DOT/FAA - Decision | Other | Decision | 2024-05-28T04:00:00Z | 2024 | 5 | 2024-05-28T04:00:00Z | 2024-11-12T22:33:35Z | 1 | 0 | 0900006486588430 | ||
| FAA-2019-0829-0008 | FAA | None FAA-2019-0829 | U.S. DOT/FAA - Correspondence | Other | Correspondence | 2024-04-16T04:00:00Z | 2024 | 4 | 2024-04-16T04:00:00Z | 2024-11-12T22:25:27Z | 1 | 0 | 09000064864dae5f | ||
| FAA-2019-0829-0007 | FAA | None FAA-2019-0829 | Columbia Helicopters, Inc. - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2024-02-15T05:00:00Z | 2024 | 2 | 2024-02-15T05:00:00Z | 2024-11-12T22:22:01Z | 1 | 0 | 090000648640856e | ||
| FAA-2019-0829-0006 | FAA | None FAA-2019-0829 | U.S. DOT/FAA - Request for Information | Other | Petition(s) | 2024-01-05T05:00:00Z | 2024 | 1 | 2024-01-05T05:00:00Z | 2024-11-12T22:20:31Z | 1 | 0 | 090000648637ea03 | ||
| FAA-2019-0829-0005 | FAA | None FAA-2019-0829 | Columbia Helicopters, Inc. - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2023-12-19T05:00:00Z | 2023 | 12 | 2023-12-19T05:00:00Z | 2024-11-12T06:22:00Z | 1 | 0 | 0900006486348bfa | ||
| FAA-2019-0829-0004 | FAA | None FAA-2019-0829 | Decision | Other | Decision | 2022-01-10T05:00:00Z | 2022 | 1 | 2022-01-10T05:00:00Z | 2022-01-10T16:00:16Z | 0 | 0 | 0900006484f14583 | ||
| FAA-2019-0829-0003 | FAA | None FAA-2019-0829 | Columbia Helicopters, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2021-12-15T05:00:00Z | 2021 | 12 | 2021-12-15T05:00:00Z | 2024-11-07T00:35:39Z | 1 | 0 | 0900006484ece887 | ||
| FAA-2019-0829-0002 | FAA | None FAA-2019-0829 | Decision | Other | Decision | 2019-12-30T05:00:00Z | 2019 | 12 | 2019-12-30T05:00:00Z | 2019-12-30T19:21:48Z | 0 | 0 | 0900006484259967 | ||
| FAA-2019-0829-0001 | FAA | None FAA-2019-0829 | Columbia Helicopters, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2019-10-16T04:00:00Z | 2019 | 10 | 2019-10-16T04:00:00Z | 2024-11-12T23:11:07Z | 1 | 0 | 09000064840944c0 |
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;