documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where docket_id = "FAA-2010-0715" 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-2010-0715-0014 | FAA | None FAA-2010-0715 | U.S. DOT/FAA - Decision | Other | Decision | 2020-12-22T05:00:00Z | 2020 | 12 | 2020-12-22T05:00:00Z | 2024-11-12T23:27:24Z | 1 | 0 | 09000064849b7091 | ||
| FAA-2010-0715-0013 | FAA | None FAA-2010-0715 | Adventure Flights - Exemption/Rulemaking | Other | Petition(s) | 2020-11-17T05:00:00Z | 2020 | 11 | 2020-11-17T05:00:00Z | 2024-11-06T23:42:44Z | 1 | 0 | 090000648496456b | ||
| FAA-2010-0715-0012 | FAA | None FAA-2010-0715 | Decision | Other | Decision | 2018-12-04T05:00:00Z | 2018 | 12 | 2018-12-04T05:00:00Z | 2018-12-04T21:01:00Z | 0 | 0 | 090000648393de22 | ||
| FAA-2010-0715-0011 | FAA | None FAA-2010-0715 | Jim D. Bilbrey - Exemption/Rulemaking | Other | Petition(s) | 2018-10-29T04:00:00Z | 2018 | 10 | 2018-10-29T04:00:00Z | 2024-11-07T01:05:40Z | 1 | 0 | 090000648385d089 | ||
| FAA-2010-0715-0009 | FAA | None FAA-2010-0715 | Jim Bilbrey Adventure Flights School - Exemption/Rulemaking | Other | Petition(s) | 2016-10-13T04:00:00Z | 2016 | 10 | 2016-10-13T04:00:00Z | 2024-11-11T21:32:59Z | 1 | 0 | 09000064822bad6f | ||
| FAA-2010-0715-0008 | FAA | None FAA-2010-0715 | U.S. DOT/FAA - Decision | Other | Decision | 2014-11-25T05:00:00Z | 2014 | 11 | 2014-11-25T05:00:00Z | 2014-11-25T15:55:51Z | 0 | 0 | 0900006481941054 | ||
| FAA-2010-0715-0007 | FAA | None FAA-2010-0715 | Jim Bibrey - Exemption/Rulemaking | Other | Petition(s) | 2014-10-07T04:00:00Z | 2014 | 10 | 2014-10-07T04:00:00Z | 2014-10-07T15:49:05Z | 0 | 0 | 09000064818a7aea | ||
| FAA-2010-0715-0006 | FAA | None FAA-2010-0715 | Jim Bilbrey - Exemption/Rulemaking | Other | Petition(s) | 2014-09-24T04:00:00Z | 2014 | 9 | 2014-09-24T04:00:00Z | 2024-11-07T23:10:12Z | 1 | 0 | 090000648188aa42 | ||
| FAA-2010-0715-0005 | FAA | None FAA-2010-0715 | Jim D. Bilbrey - Exemption/Rulemaking | Other | Petition(s) | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-09-19T04:00:00Z | 2014-09-24T15:18:06Z | 0 | 0 | 0900006481879f5e | ||
| FAA-2010-0715-0004 | FAA | None FAA-2010-0715 | U.S. DOT/FAA - Decision | Other | Decision | 2012-11-02T04:00:00Z | 2012 | 11 | 2012-11-02T04:00:00Z | 2024-11-11T20:43:38Z | 1 | 0 | 090000648115a1ff | ||
| FAA-2010-0715-0003 | FAA | None FAA-2010-0715 | Adventure Flights - Exemption/Rulemaking | Other | Petition(s) | 2012-06-27T04:00:00Z | 2012 | 6 | 2012-06-27T04:00:00Z | 2024-11-07T22:39:48Z | 1 | 0 | 0900006481069a55 | ||
| FAA-2010-0715-0002 | FAA | None FAA-2010-0715 | U.S. DOT/FAA - Decision | Other | Decision | 2010-10-21T04:00:00Z | 2010 | 10 | 2010-10-21T04:00:00Z | 2013-07-27T23:35:09Z | 0 | 0 | 0900006480b738bf | ||
| FAA-2010-0715-0001 | FAA | None FAA-2010-0715 | Jim D. Bilbrey - Exemption/Rulemaking | Other | Petition(s) | 2010-07-09T04:00:00Z | 2010 | 7 | 2010-07-09T04:00:00Z | 2024-11-07T22:19:08Z | 1 | 0 | 0900006480b13ff1 |
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;