documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2017-0604" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, open_for_comment, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
agency_id 1
- FAA 10
| 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-0604-0011 | FAA | None FAA-2017-0604 | Decision | Other | Decision | 2021-09-10T04:00:00Z | 2021 | 9 | 2021-09-10T04:00:00Z | 2021-09-10T13:55:16Z | 0 | 0 | 0900006484d69afb | ||
| FAA-2017-0604-0010 | FAA | None FAA-2017-0604 | Record of Conversation-Bell Textron | Other | Record of Meeting/Phone Conversation | 2021-07-08T04:00:00Z | 2021 | 7 | 2021-07-08T04:00:00Z | 2021-07-08T20:12:45Z | 0 | 0 | 0900006484bdbcc2 | ||
| FAA-2017-0604-0009 | FAA | None FAA-2017-0604 | Bell Helicopter Textron - Exemption/Rulemaking | Other | Petition(s) | 2021-06-22T04:00:00Z | 2021 | 6 | 2021-06-22T04:00:00Z | 2024-11-12T23:31:51Z | 1 | 0 | 0900006484b9fed9 | ||
| FAA-2017-0604-0008 | FAA | None FAA-2017-0604 | Decision | Other | Decision | 2020-03-25T04:00:00Z | 2020 | 3 | 2020-03-25T04:00:00Z | 2020-03-25T19:53:36Z | 0 | 0 | 090000648446878e | ||
| FAA-2017-0604-0007 | FAA | None FAA-2017-0604 | Decision | Other | Decision | 2019-09-06T04:00:00Z | 2019 | 9 | 2019-09-06T04:00:00Z | 2019-09-06T18:56:18Z | 0 | 0 | 0900006483f0c252 | ||
| FAA-2017-0604-0006 | FAA | None FAA-2017-0604 | Order Denying Complainant's Motion for Order Compelling Response to Discovery and Deeming Requests for Admission Admitted | Other | 2019-08-26T00:00:00Z | 2019 | 8 | 2019-10-30T14:23:43Z | 0 | 1 | 0900006483ec2d19 | ||||
| FAA-2017-0604-0005 | FAA | None FAA-2017-0604 | Bell Helicopter Textron - Exemption/Rulemaking (Amendment) | Other | Amendment | 2019-06-21T04:00:00Z | 2019 | 6 | 2019-06-21T04:00:00Z | 2024-11-12T23:03:24Z | 1 | 0 | 0900006483d2dabc | ||
| FAA-2017-0604-0004 | FAA | None FAA-2017-0604 | Decision | Other | Decision | 2018-04-02T04:00:00Z | 2018 | 4 | 2018-04-02T04:00:00Z | 2018-04-02T19:59:15Z | 0 | 0 | 090000648308a8a1 | ||
| FAA-2017-0604-0002 | FAA | None FAA-2017-0604 | Exemption Petitions; Summaries: Bell Helicopter Textron | Notice | Notice of Docketing | 2017-11-20T05:00:00Z | 2017 | 11 | 2017-11-20T05:00:00Z | 2017-12-12T04:59:59Z | 2024-11-07T01:13:28Z | 2017-25047 | 1 | 0 | 0900006482c91a13 |
| FAA-2017-0604-0001 | FAA | None FAA-2017-0604 | Bell Helicopter Textron - Exemption/Rulemaking | Other | Petition(s) | 2017-06-07T04:00:00Z | 2017 | 6 | 2017-06-07T04:00:00Z | 2024-11-07T01:01:30Z | 1 | 0 | 09000064826a2ce1 |
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;