documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2012-1349" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-2012-1349-0008 | FAA | None FAA-2012-1349 | U.S. DOT/FAA - Decision | Other | Decision | 2015-12-22T05:00:00Z | 2015 | 12 | 2015-12-22T05:00:00Z | 2024-11-07T23:25:40Z | 1 | 0 | 0900006481cfcd86 | ||
| FAA-2012-1349-0007 | FAA | None FAA-2012-1349 | Amendment to Exemption 10818 | Other | Amendment | 2015-11-13T05:00:00Z | 2015 | 11 | 2015-11-13T05:00:00Z | 2024-11-12T05:41:06Z | 1 | 0 | 0900006481c47139 | ||
| FAA-2012-1349-0006 | FAA | None FAA-2012-1349 | Delta Air Lines, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2015-10-06T04:00:00Z | 2015 | 10 | 2015-10-06T04:00:00Z | 2024-11-12T05:45:30Z | 1 | 0 | 0900006481ca2103 | ||
| FAA-2012-1349-0005 | FAA | None FAA-2012-1349 | U.S. DOT/FAA - Decision | Other | Decision | 2014-05-08T04:00:00Z | 2014 | 5 | 2014-05-08T04:00:00Z | 2014-05-08T14:04:29Z | 0 | 0 | 09000064816e9eb3 | ||
| FAA-2012-1349-0004 | FAA | None FAA-2012-1349 | Delta Air Lines, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2013-10-29T04:00:00Z | 2013 | 10 | 2024-11-12T05:20:59Z | 1 | 0 | 0900006481463e3f | |||
| FAA-2012-1349-0003 | FAA | None FAA-2012-1349 | U.S. DOT/FAA - Decision | Other | Decision | 2013-07-11T04:00:00Z | 2013 | 7 | 2013-07-11T04:00:00Z | 2024-11-07T22:57:15Z | 1 | 0 | 090000648135f694 | ||
| FAA-2012-1349-0002 | FAA | None FAA-2012-1349 | Petitions for Exemptions; Summaries of Petitions Received | Notice | Notice of Receipt of Petition | 2013-01-18T05:00:00Z | 2013 | 1 | 2013-01-18T05:00:00Z | 2013-02-08T04:59:59Z | 2024-11-12T05:12:57Z | 2013-01044 | 1 | 0 | 09000064811c72dc |
| FAA-2012-1349-0001 | FAA | None FAA-2012-1349 | Delta Air Lines, Inc. - Exemption/Rulemaking | Other | Petition(s) | 2012-12-28T05:00:00Z | 2012 | 12 | 2012-12-28T05:00:00Z | 2024-11-12T05:11:55Z | 1 | 0 | 090000648119d141 |
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;