documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2012-0872" 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, posted_date (date), comment_start_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-0872-0028 | FAA | None FAA-2012-0872 | U.S. DOT/FAA - Complainant's Post-Trial Brief | Other | Brief | 2014-07-16T04:00:00Z | 2014 | 7 | 2014-07-16T04:00:00Z | 2014-07-16T17:47:02Z | 0 | 0 | 09000064817b1f72 | ||
| FAA-2012-0872-0026 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Transcript of Hearing Held on May 19, 2014 | Other | Transcript(s) | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T04:00:00Z | 2014-07-01T17:49:10Z | 0 | 0 | 090000648177fa0e | ||
| FAA-2012-0872-0027 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Transcript of Hearing Held on May 20, 2014 | Other | Transcript(s) | 2014-07-01T04:00:00Z | 2014 | 7 | 2014-07-01T04:00:00Z | 2014-07-01T18:00:00Z | 0 | 0 | 090000648177fa73 | ||
| FAA-2012-0872-0024 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Order on Respondent's Request for Judicial Notice | Other | Order | 2014-05-07T04:00:00Z | 2014 | 5 | 2014-05-07T04:00:00Z | 2014-05-07T17:54:52Z | 0 | 0 | 09000064816e81e9 | ||
| FAA-2012-0872-0025 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Order on Agency's Request for Judicial Notice | Other | Order | 2014-05-07T04:00:00Z | 2014 | 5 | 2014-05-07T04:00:00Z | 2014-05-07T18:04:36Z | 0 | 0 | 09000064816e8217 | ||
| FAA-2012-0872-0023 | FAA | None FAA-2012-0872 | SkyWest Airlines - Notice of Disposition | Other | Adjudication Notice | 2014-05-01T04:00:00Z | 2014 | 5 | 2014-05-01T04:00:00Z | 2014-05-01T14:00:39Z | 0 | 0 | 09000064816da6ee | ||
| FAA-2012-0872-0022 | FAA | None FAA-2012-0872 | SkyWest Airlines - Request for Judicial Notice | Other | Request | 2014-04-24T04:00:00Z | 2014 | 4 | 2014-04-24T04:00:00Z | 2014-04-24T13:38:13Z | 0 | 0 | 09000064816c8cb0 | ||
| FAA-2012-0872-0021 | FAA | None FAA-2012-0872 | U.S. DOT/FAA - Motion to Take Judicial Notice | Other | Motion | 2014-04-24T04:00:00Z | 2014 | 4 | 2014-04-24T04:00:00Z | 2014-04-24T13:28:22Z | 0 | 0 | 09000064816c8c07 | ||
| FAA-2012-0872-0020 | FAA | None FAA-2012-0872 | Letter from Sky West to Judge Goodwin re: Settlement Efforts and Hearing Dates | Other | Letter(s) | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T04:00:00Z | 2014-03-14T15:29:24Z | 0 | 0 | 0900006481666186 | ||
| FAA-2012-0872-0019 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Hearing Notice | Other | Hearing/Meeting Summary | 2014-03-12T04:00:00Z | 2014 | 3 | 2014-03-12T04:00:00Z | 2014-03-14T13:37:31Z | 0 | 0 | 0900006481661fbc | ||
| FAA-2012-0872-0018 | FAA | None FAA-2012-0872 | U.S. DOT/FAA - Order Staying Proceedings | Other | Decision | 2014-02-05T05:00:00Z | 2014 | 2 | 2014-02-05T05:00:00Z | 2014-02-05T20:33:34Z | 0 | 0 | 09000064815498d7 | ||
| FAA-2012-0872-0017 | FAA | None FAA-2012-0872 | U.S. DOT/FAA - Joint Motion to Stay Proceedings | Other | Motion | 2014-02-05T05:00:00Z | 2014 | 2 | 2014-02-05T05:00:00Z | 2014-02-05T17:13:26Z | 0 | 0 | 09000064815482ed |
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;