documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2002-13734" and posted_year = 2014 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-2002-13734-0044 | FAA | Exemption/Rulemaking - Midwest Express Airlines FAA-2002-13734 | U.S. DOT/FAA - Decision | Other | Decision | 2014-03-06T05:00:00Z | 2014 | 3 | 2014-03-06T05:00:00Z | 2014-03-06T16:58:39Z | 0 | 0 | 09000064815fd294 | ||
| FAA-2002-13734-0038 | FAA | Exemption/Rulemaking - Midwest Express Airlines FAA-2002-13734 | Southwest Airlines and JetBlue Airways - Letter | Other | Letter(s) | 2014-01-31T05:00:00Z | 2014 | 1 | 2014-01-31T05:00:00Z | 2024-11-07T23:03:25Z | 1 | 0 | 0900006481539e71 | ||
| FAA-2002-13734-0037 | FAA | Exemption/Rulemaking - Midwest Express Airlines FAA-2002-13734 | Southwest Airlines and JetBlue Airways - Joint Response | Other | Response(s) | 2014-01-31T05:00:00Z | 2014 | 1 | 2014-01-31T05:00:00Z | 2024-11-11T20:48:51Z | 1 | 0 | 0900006481537314 | ||
| FAA-2002-13734-0036 | FAA | Exemption/Rulemaking - Midwest Express Airlines FAA-2002-13734 | Republic Airline, inc., Shuttle America and Chautaqua Airlines - Response | Other | Response(s) | 2014-01-30T05:00:00Z | 2014 | 1 | 2014-01-30T05:00:00Z | 2014-01-30T16:49:40Z | 0 | 0 | 0900006481533579 | ||
| FAA-2002-13734-0035 | FAA | Exemption/Rulemaking - Midwest Express Airlines FAA-2002-13734 | Southwest Airlines and JetBlue Airways - Joint Answer | Other | Answer | 2014-01-28T05:00:00Z | 2014 | 1 | 2014-01-28T05:00:00Z | 2024-11-07T23:03:18Z | 1 | 0 | 090000648152cb5f | ||
| FAA-2002-13734-0022 | FAA | Exemption/Rulemaking - Midwest Express Airlines FAA-2002-13734 | Petitions for Exemption; Summaries | Notice | Notice of Receipt of Petition | 2014-01-16T05:00:00Z | 2014 | 1 | 2014-01-16T05:00:00Z | 2014-01-28T04:59:59Z | 2024-11-07T23:02:27Z | 2014-00701 | 1 | 0 | 090000648150d5b0 |
| FAA-2002-13734-0021 | FAA | Exemption/Rulemaking - Midwest Express Airlines FAA-2002-13734 | Amendment to the Joint Petition of Republic and Shuttle America | Other | Petition(s) | 2014-01-09T05:00:00Z | 2014 | 1 | 2014-01-09T05:00:00Z | 2024-11-07T23:01:12Z | 1 | 0 | 09000064814f671d | ||
| FAA-2002-13734-0020 | FAA | Exemption/Rulemaking - Midwest Express Airlines FAA-2002-13734 | Republic Airline and Shuttle America - Joint Petition | Other | Petition(s) | 2014-01-07T05:00:00Z | 2014 | 1 | 2014-01-07T05:00:00Z | 2024-11-07T23:01:15Z | 1 | 0 | 09000064814ef686 |
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;