documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2015-3932" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2015-3932-0010 | FAA | None FAA-2015-3932 | U.S. DOT/FAA - Decision (Closeout Letter) | Other | Decision | 2016-06-14T04:00:00Z | 2016 | 6 | 2016-06-14T04:00:00Z | 2024-11-12T06:08:44Z | 1 | 0 | 0900006482036fe1 | ||
| FAA-2015-3932-0009 | FAA | None FAA-2015-3932 | U.S. DOT/FAA - Decision | Other | Decision | 2016-03-31T04:00:00Z | 2016 | 3 | 2016-03-31T04:00:00Z | 2016-03-31T20:28:55Z | 0 | 0 | 0900006481eef48d | ||
| FAA-2015-3932-0007 | FAA | None FAA-2015-3932 | U.S. DOT/OST - Notice of Communication, September 18, 2015 (U.S. Senator Debbie Stabenow) | Other | Action Memo or Letter | 2016-01-15T05:00:00Z | 2016 | 1 | 2016-01-15T05:00:00Z | 2016-01-15T18:34:08Z | 0 | 0 | 0900006481df34bb | ||
| FAA-2015-3932-0008 | FAA | None FAA-2015-3932 | U.S. DOT/OST - Notice of Communication, September 18, 2015 (Representative Mike Bishop) | Other | Action Memo or Letter | 2016-01-15T05:00:00Z | 2016 | 1 | 2016-01-15T05:00:00Z | 2016-01-15T18:35:40Z | 0 | 0 | 0900006481df34be | ||
| FAA-2015-3932-0005 | FAA | None FAA-2015-3932 | Answer of JetBlue Airways Corporation | Other | Answer | 2015-10-20T04:00:00Z | 2015 | 10 | 2015-10-20T04:00:00Z | 2024-11-12T05:49:18Z | 1 | 0 | 0900006481cd666d | ||
| FAA-2015-3932-0004 | FAA | None FAA-2015-3932 | Petitions for Exemptions; Summaries: Delta Air Lines, Inc. | Notice | Request for Comments | 2015-09-29T04:00:00Z | 2015 | 9 | 2015-09-29T04:00:00Z | 2015-10-20T03:59:59Z | 2024-11-07T23:26:14Z | 2015-24598 | 1 | 0 | 0900006481ca0f5b |
| FAA-2015-3932-0003 | FAA | None FAA-2015-3932 | American Airlines, Inc. - Consolidated Response to Application of Delta Air Lines, Inc. and Answer of Delta Air Lines, Inc. | Other | Consolidated Reply | 2015-09-28T04:00:00Z | 2015 | 9 | 2015-09-28T04:00:00Z | 2024-11-07T23:30:20Z | 1 | 0 | 0900006481c94991 | ||
| FAA-2015-3932-0002 | FAA | None FAA-2015-3932 | American Airlines - Notice of Intent | Other | Response(s) | 2015-09-28T04:00:00Z | 2015 | 9 | 2015-09-28T04:00:00Z | 2024-11-12T05:40:02Z | 1 | 0 | 0900006481c7dfa9 | ||
| FAA-2015-3932-0001 | FAA | None FAA-2015-3932 | Delta Air Lines, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2015-09-16T04:00:00Z | 2015 | 9 | 2015-09-16T04:00:00Z | 2024-11-07T22:07:00Z | 1 | 0 | 0900006481c7a613 |
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;