documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2014-1088" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, open_for_comment, withdrawn, 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-2014-1088-0013 | FAA | None FAA-2014-1088 | U.S. DOT/FAA - Decision/Amendment | Other | Decision | 2016-11-18T05:00:00Z | 2016 | 11 | 2016-11-18T05:00:00Z | 2016-11-18T14:53:21Z | 0 | 0 | 09000064823a13c8 | ||
| FAA-2014-1088-0011 | FAA | None FAA-2014-1088 | U.S. DOT/FAA - Decision | Other | Decision | 2016-03-18T04:00:00Z | 2016 | 3 | 2016-03-18T04:00:00Z | 2024-11-12T06:06:03Z | 1 | 0 | 0900006481eb7444 | ||
| FAA-2014-1088-0010 | FAA | None FAA-2014-1088 | U.S. DOT/FAA - Decision | Other | Decision | 2016-03-18T04:00:00Z | 2016 | 3 | 2016-03-18T04:00:00Z | 2024-11-07T23:32:26Z | 1 | 0 | 0900006481d7f3f4 | ||
| FAA-2014-1088-0009 | FAA | None FAA-2014-1088 | U.S. DOT/FAA - Decision | Other | Decision | 2016-03-15T04:00:00Z | 2016 | 3 | 2016-03-15T04:00:00Z | 2016-03-15T18:58:01Z | 0 | 0 | 0900006481d5f9e2 | ||
| FAA-2014-1088-0008 | FAA | None FAA-2014-1088 | Kansas State University- Exemption/Rulemaking | Other | 2016-03-03T00:00:00Z | 2016 | 3 | 2024-11-12T06:02:23Z | 0 | 1 | 0900006481e9f11c | ||||
| FAA-2014-1088-0007 | FAA | None FAA-2014-1088 | U.S. DOT/FAA - Decision | Other | Decision | 2016-02-18T05:00:00Z | 2016 | 2 | 2016-02-18T05:00:00Z | 2016-02-18T19:18:02Z | 0 | 0 | 0900006481cff950 | ||
| FAA-2014-1088-0006 | FAA | None FAA-2014-1088 | U.S. DOT/FAA - Record of Conversation | Other | Record of Meeting/Phone Conversation | 2015-07-09T04:00:00Z | 2015 | 7 | 2015-07-09T04:00:00Z | 2024-11-11T20:59:43Z | 1 | 0 | 0900006481b527c8 | ||
| FAA-2014-1088-0005 | FAA | None FAA-2014-1088 | U.S. DOT/FAA - Request for Additional Information | Other | Request | 2015-05-27T04:00:00Z | 2015 | 5 | 2015-05-27T04:00:00Z | 2024-11-07T23:21:04Z | 1 | 0 | 0900006481ae95b0 | ||
| FAA-2014-1088-0002 | FAA | None FAA-2014-1088 | Petitions for Exemptions; Summaries: Kansas State University | Notice | Notice of Docketing | 2015-01-08T05:00:00Z | 2015 | 1 | 2015-01-08T05:00:00Z | 2015-01-29T04:59:59Z | 2024-11-11T20:55:05Z | 2015-00048 | 1 | 0 | 09000064819acf8f |
| FAA-2014-1088-0001 | FAA | None FAA-2014-1088 | Kansas State University - Exemption/Rulemaking | Other | Petition(s) | 2014-12-19T05:00:00Z | 2014 | 12 | 2014-12-19T05:00:00Z | 2024-11-11T20:55:39Z | 1 | 0 | 09000064819862c4 |
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;