documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2017-0791" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, 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 11
| 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-2017-0791-0013 | FAA | None FAA-2017-0791 | Rescission for Exemption | Other | Decision | 2018-09-25T04:00:00Z | 2018 | 9 | 2018-09-25T04:00:00Z | 2018-09-25T19:09:40Z | 0 | 0 | 0900006483771d01 | ||
| FAA-2017-0791-0012 | FAA | None FAA-2017-0791 | NMSB 72-K031 Accomplishment Confirmation | Other | Additional Information | 2018-05-22T04:00:00Z | 2018 | 5 | 2018-05-22T04:00:00Z | 2024-11-07T01:26:23Z | 1 | 0 | 09000064832b080b | ||
| FAA-2017-0791-0011 | FAA | None FAA-2017-0791 | Rolls-Royce plc - Request for Withdrawal of Exemption Request | Other | Request | 2018-04-30T04:00:00Z | 2018 | 4 | 2018-04-30T04:00:00Z | 2018-04-30T18:21:38Z | 0 | 0 | 09000064831ef0f0 | ||
| FAA-2017-0791-0010 | FAA | None FAA-2017-0791 | Decision | Other | Decision | 2018-02-13T05:00:00Z | 2018 | 2 | 2018-02-13T05:00:00Z | 2018-02-13T18:48:27Z | 0 | 0 | 0900006482f2b87c | ||
| FAA-2017-0791-0008 | FAA | None FAA-2017-0791 | Rolls-Royce plc - Request for Amendment | Other | Amendment | 2017-12-26T05:00:00Z | 2017 | 12 | 2017-12-26T05:00:00Z | 2024-11-07T01:16:27Z | 1 | 0 | 0900006482d5a084 | ||
| FAA-2017-0791-0007 | FAA | None FAA-2017-0791 | Supporting Documents | Supporting & Related Material | Supplement | 2017-12-19T05:00:00Z | 2017 | 12 | 2017-12-19T21:28:30Z | 0 | 0 | 0900006482d3cbed | |||
| FAA-2017-0791-0006 | FAA | None FAA-2017-0791 | U.S. DOT/FAA - Decision | Other | Decision | 2017-12-19T05:00:00Z | 2017 | 12 | 2017-12-19T05:00:00Z | 2017-12-19T21:26:44Z | 0 | 0 | 0900006482d3cb8e | ||
| FAA-2017-0791-0005 | FAA | None FAA-2017-0791 | Rolls-Royce - Exemption/Rulemaking | Other | Petition(s) | 2017-12-11T05:00:00Z | 2017 | 12 | 2017-12-11T05:00:00Z | 2024-11-07T01:12:39Z | 1 | 0 | 0900006482cf8ef6 | ||
| FAA-2017-0791-0004 | FAA | None FAA-2017-0791 | Rolls Royce Exemption - Correction | Other | Decision | 2017-10-18T04:00:00Z | 2017 | 10 | 2017-10-18T04:00:00Z | 2017-10-18T15:58:56Z | 0 | 0 | 0900006482bd828f | ||
| FAA-2017-0791-0002 | FAA | None FAA-2017-0791 | Exemption Petitions: Rolls Royce plc | Notice | Notice of Intent | 2017-08-14T04:00:00Z | 2017 | 8 | 2017-08-14T04:00:00Z | 2017-08-25T03:59:59Z | 2024-11-07T01:08:36Z | 2017-17035 | 1 | 0 | 0900006482a19c4c |
| FAA-2017-0791-0001 | FAA | None FAA-2017-0791 | Rolls-Royce plc - Exemption/Rulemaking | Other | Petition(s) | 2017-08-03T04:00:00Z | 2017 | 8 | 2017-08-03T04:00:00Z | 2024-11-07T01:07:09Z | 1 | 0 | 0900006482998b27 |
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;