documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where docket_id = "FAA-2014-0391" 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-2014-0391-0122 | FAA | None FAA-2014-0391 | SIMCOM Aviation Training - Exemption/Rulemaking | Other | 2019-02-28T00:00:00Z | 2019 | 2 | 2024-11-12T22:56:14Z | 0 | 1 | 0900006483aaf82a | ||||
| FAA-2014-0391-0021 | FAA | None FAA-2014-0391 | Alaska Airlines - Request of Extension of Comment Period | Other | Request | 2014-09-19T04:00:00Z | 2014 | 9 | 2014-09-19T04:00:00Z | 2014-09-19T18:38:20Z | 0 | 0 | 0900006481877439 | ||
| FAA-2014-0391-0018 | FAA | None FAA-2014-0391 | FlightSafety Visual Systems - Request for Extension of Comment Period | Other | Request | 2014-09-15T04:00:00Z | 2014 | 9 | 2014-09-15T04:00:00Z | 2014-09-15T20:38:36Z | 0 | 0 | 090000648186e4c2 | ||
| FAA-2014-0391-0017 | FAA | None FAA-2014-0391 | CAE SimuFlite - Request for Extension | Other | Request | 2014-09-12T04:00:00Z | 2014 | 9 | 2014-09-12T16:29:28Z | 0 | 0 | 090000648184f09f | |||
| FAA-2014-0391-0016 | FAA | None FAA-2014-0391 | U.S. DOT/FAA - Summary of Meeting | Other | Hearing/Meeting Summary | 2014-09-05T04:00:00Z | 2014 | 9 | 2014-09-05T04:00:00Z | 2014-09-05T18:14:59Z | 0 | 0 | 0900006481857afc | ||
| FAA-2014-0391-0013 | FAA | None FAA-2014-0391 | Delta Air Lines - Request for an Extension of Comment Period | Other | Request | 2014-08-27T04:00:00Z | 2014 | 8 | 2014-08-27T04:00:00Z | 2014-08-27T19:39:11Z | 0 | 0 | 0900006481838e80 | ||
| FAA-2014-0391-0014 | FAA | None FAA-2014-0391 | Flight Safety International - Request for Extension of Comment Period | Other | Request | 2014-08-27T04:00:00Z | 2014 | 8 | 2014-08-27T04:00:00Z | 2014-08-27T19:42:53Z | 0 | 0 | 090000648183b70a | ||
| FAA-2014-0391-0009 | FAA | None FAA-2014-0391 | Airlines for America - Request for Extension of Comment Period | Other | Request for Extension | 2014-08-15T04:00:00Z | 2014 | 8 | 2014-08-15T04:00:00Z | 2014-08-15T20:45:14Z | 0 | 0 | 0900006481820f1a | ||
| FAA-2014-0391-0007 | FAA | None FAA-2014-0391 | U.S. DOT/FAA - FAA Regulatory Impact Assessment | Other | Report | 2014-07-22T04:00:00Z | 2014 | 7 | 2014-07-22T04:00:00Z | 2024-11-12T05:28:31Z | 1 | 0 | 090000648179f1e5 | ||
| FAA-2014-0391-0003 | FAA | None FAA-2014-0391 | U.S. DOT/FAA - Report from the Stick Pusher and Adverse Weather Event Training ARC 2011 | Other | Report | 2014-07-22T04:00:00Z | 2014 | 7 | 2014-07-22T04:00:00Z | 2024-11-12T05:28:38Z | 1 | 0 | 090000648179f23c | ||
| FAA-2014-0391-0006 | FAA | None FAA-2014-0391 | American Airlines - Request for Extension of Comment Period | Other | Request | 2014-07-22T04:00:00Z | 2014 | 7 | 2014-07-22T04:00:00Z | 2014-07-22T14:33:03Z | 0 | 0 | 09000064817aeb62 | ||
| FAA-2014-0391-0002 | FAA | None FAA-2014-0391 | U.S. DOT/FAA - E.O. 12866 Compliance Form | Other | OMB Review | 2014-07-22T04:00:00Z | 2014 | 7 | 2014-07-22T04:00:00Z | 2014-07-22T14:24:59Z | 0 | 0 | 090000648179f07b | ||
| FAA-2014-0391-0004 | FAA | None FAA-2014-0391 | U.S. DOT/FAA - Report from the Stick Pusher and Adverse Weather Event Training ARC 2012 | Other | Report | 2014-07-22T04:00:00Z | 2014 | 7 | 2024-11-12T05:28:38Z | 1 | 0 | 090000648179f241 |
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;