documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FAA" and docket_id = "FAA-2019-1033" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FAA · 7 ✖
| 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-1033-0010 | FAA | None FAA-2019-1033 | Decision | Other | Decision | 2022-06-14T04:00:00Z | 2022 | 6 | 2022-06-14T04:00:00Z | 2022-06-14T18:26:03Z | 0 | 0 | 0900006485162c1b | ||
| FAA-2019-1033-0006 | FAA | None FAA-2019-1033 | Petition for Exemption; Summary: Bridger Aviation Services, LLC | Notice | Notice of Intent | 2020-07-15T04:00:00Z | 2020 | 7 | 2020-07-15T04:00:00Z | 2020-08-05T03:59:59Z | 2024-11-06T23:38:10Z | 2020-15230 | 1 | 0 | 090000648476399f |
| FAA-2019-1033-0005 | FAA | None FAA-2019-1033 | Bridger Avaition Services LLC - Response via e-mail | Supporting & Related Material | Supplement | 2020-05-04T04:00:00Z | 2020 | 5 | 2020-05-04T17:58:46Z | 0 | 0 | 0900006484552ab1 | |||
| FAA-2019-1033-0004 | FAA | None FAA-2019-1033 | Request for Information | Other | Request | 2020-04-30T04:00:00Z | 2020 | 4 | 2020-04-30T04:00:00Z | 2024-11-06T23:35:43Z | 1 | 0 | 09000064845142cf | ||
| FAA-2019-1033-0003 | FAA | None FAA-2019-1033 | Bridger Aviation Services LLC - Response | Other | Response(s) | 2020-01-09T05:00:00Z | 2020 | 1 | 2020-01-09T05:00:00Z | 2020-01-09T21:38:01Z | 0 | 0 | 0900006484284199 | ||
| FAA-2019-1033-0002 | FAA | None FAA-2019-1033 | U.S. DOT/FAA - Request for Additional Information | Other | Request | 2019-12-26T05:00:00Z | 2019 | 12 | 2019-12-26T05:00:00Z | 2024-11-12T23:15:00Z | 1 | 0 | 090000648424bee5 | ||
| FAA-2019-1033-0001 | FAA | None FAA-2019-1033 | Bridger Avaition Services LLC - Exemption/Rulemaking | Other | Petition(s) | 2019-12-05T05:00:00Z | 2019 | 12 | 2019-12-05T05:00:00Z | 2024-11-12T23:14:09Z | 1 | 0 | 09000064841e9577 |
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;