documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where agency_id = "FAA" and docket_id = "FAA-2017-0683" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-2017-0683-0013 | FAA | None FAA-2017-0683 | Decision | Other | Decision | 2022-06-08T04:00:00Z | 2022 | 6 | 2022-06-08T04:00:00Z | 2022-06-08T17:21:57Z | 0 | 0 | 090000648514e78f | ||
| FAA-2017-0683-0012 | FAA | None FAA-2017-0683 | Petition for Exemption; Summary: The Boeing Company | Notice | Notice of Receipt of Petition | 2021-12-20T05:00:00Z | 2021 | 12 | 2021-12-20T05:00:00Z | 2022-01-11T04:59:59Z | 2024-11-12T23:36:01Z | 2021-27488 | 1 | 0 | 0900006484ed62e2 |
| FAA-2017-0683-0011 | FAA | None FAA-2017-0683 | Notice of Petition for Exemption Received | Other | Additional Information | 2021-12-15T05:00:00Z | 2021 | 12 | 2021-12-15T05:00:00Z | 2021-12-15T18:53:34Z | 0 | 0 | 0900006484ecdb17 | ||
| FAA-2017-0683-0010 | FAA | None FAA-2017-0683 | Acknowledgment Letter | Other | Acknowledgement Letter/Receipt | 2021-12-09T05:00:00Z | 2021 | 12 | 2021-12-09T05:00:00Z | 2021-12-09T18:58:47Z | 0 | 0 | 0900006484eb4007 | ||
| FAA-2017-0683-0009 | FAA | None FAA-2017-0683 | Boeing - Exemption.Rulemaking | Other | Petition(s) | 2021-11-15T05:00:00Z | 2021 | 11 | 2021-11-15T05:00:00Z | 2024-11-07T00:33:26Z | 1 | 0 | 0900006484e43e1d | ||
| FAA-2017-0683-0008 | FAA | None FAA-2017-0683 | Request for Information | Other | Petition(s) | 2021-08-04T04:00:00Z | 2021 | 8 | 2021-08-04T04:00:00Z | 2024-11-06T23:49:34Z | 1 | 0 | 0900006484c2681b | ||
| FAA-2017-0683-0007 | FAA | None FAA-2017-0683 | Boeing - Exemption.Rulemaking | Other | Petition(s) | 2021-06-14T04:00:00Z | 2021 | 6 | 2021-06-14T04:00:00Z | 2024-11-12T23:31:42Z | 1 | 0 | 0900006484b74ad2 | ||
| FAA-2017-0683-0006 | FAA | None FAA-2017-0683 | U.S. DOT/FAA - Decision | Other | Decision | 2019-07-16T04:00:00Z | 2019 | 7 | 2019-07-16T04:00:00Z | 2024-11-12T23:04:08Z | 1 | 0 | 0900006483d970b4 | ||
| FAA-2017-0683-0005 | FAA | None FAA-2017-0683 | Boeing - Exemption/Rulemaking | Other | Petition(s) | 2019-05-24T04:00:00Z | 2019 | 5 | 2019-05-24T04:00:00Z | 2019-05-24T17:31:29Z | 0 | 0 | 0900006483cc63dd | ||
| FAA-2017-0683-0004 | FAA | None FAA-2017-0683 | U.S. DOT/FAA - Decision | Other | Decision | 2017-11-06T05:00:00Z | 2017 | 11 | 2017-11-06T05:00:00Z | 2017-11-06T20:04:15Z | 0 | 0 | 0900006482c4b391 | ||
| FAA-2017-0683-0002 | FAA | None FAA-2017-0683 | Exemption Petitions; Summaries | Notice | Notice of Receipt of Petition | 2017-07-28T04:00:00Z | 2017 | 7 | 2017-07-28T04:00:00Z | 2017-08-18T03:59:59Z | 2024-11-07T01:06:55Z | 2017-15918 | 1 | 0 | 090000648297d66c |
| FAA-2017-0683-0001 | FAA | None FAA-2017-0683 | Boeing - Exemption.Rulemaking | Other | Petition(s) | 2017-07-05T04:00:00Z | 2017 | 7 | 2017-07-05T04:00:00Z | 2024-11-07T01:02:38Z | 1 | 0 | 09000064827e046f |
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;