documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2011-0682" and posted_year = 2013 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, 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-2011-0682-0035 | FAA | None FAA-2011-0682 | U.S. DOT/FAA - Entry of Appearance | Other | Entry of Appearance | 2013-07-08T04:00:00Z | 2013 | 7 | 2013-07-08T04:00:00Z | 2013-07-08T14:57:51Z | 0 | 0 | 09000064813587d8 | ||
| FAA-2011-0682-0034 | FAA | None FAA-2011-0682 | U.S. DOT/FAA - Order Dismissing Motion | Other | Order | 2013-06-18T04:00:00Z | 2013 | 6 | 2013-06-18T04:00:00Z | 2013-06-18T14:15:43Z | 0 | 0 | 090000648132adad | ||
| FAA-2011-0682-0033 | FAA | None FAA-2011-0682 | Aviation Technical Services, Inc. - Motion to Permit Disclosure of the Initial Decision Served on May 17, 2013, to Representatives of Southwest Airlines Co. | Other | Motion | 2013-06-06T04:00:00Z | 2013 | 6 | 2013-06-06T04:00:00Z | 2013-06-06T15:00:21Z | 0 | 0 | 090000648130c534 | ||
| FAA-2011-0682-0032 | FAA | None FAA-2011-0682 | Aviation Technical Services, Inc. - Declaration (Confidential Order) | Other | Declaration(s) | 2013-05-31T04:00:00Z | 2013 | 5 | 2013-05-31T04:00:00Z | 2013-05-31T15:25:31Z | 0 | 0 | 0900006481300de2 | ||
| FAA-2011-0682-0031 | FAA | None FAA-2011-0682 | Aviation Technical Services, Inc. - Declaration (Confidential Order) | Other | Declaration(s) | 2013-05-31T04:00:00Z | 2013 | 5 | 2013-05-31T04:00:00Z | 2013-05-31T15:22:34Z | 0 | 0 | 0900006481300de0 | ||
| FAA-2011-0682-0030 | FAA | None FAA-2011-0682 | U.S.DOT/FAA - Order Granting Extension of Time for Filing of FAA Rebuttal Brief | Other | Order | 2013-03-26T04:00:00Z | 2013 | 3 | 2013-03-26T04:00:00Z | 2024-11-07T22:48:02Z | 1 | 0 | 0900006481244db7 | ||
| FAA-2011-0682-0029 | FAA | None FAA-2011-0682 | U.S. DOT/OST - Order Granting Extension Of Time For Filing Of Post-Hearing Briefs | Other | Order | 2013-03-19T04:00:00Z | 2013 | 3 | 2013-03-19T04:00:00Z | 2013-03-19T18:01:10Z | 0 | 0 | 0900006481232b79 | ||
| FAA-2011-0682-0028 | FAA | None FAA-2011-0682 | U.S. DOT/FAA - Declaration of Confidential Order | Other | Declaration(s) | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T05:00:00Z | 2013-02-25T21:31:13Z | 0 | 0 | 0900006481203f27 | ||
| FAA-2011-0682-0027 | FAA | None FAA-2011-0682 | U.S. DOT/FAA - Declaration of Confidential Order | Other | Declaration(s) | 2013-02-21T05:00:00Z | 2013 | 2 | 2013-02-21T05:00:00Z | 2013-02-21T20:43:12Z | 0 | 0 | 09000064811fe7ab | ||
| FAA-2011-0682-0026 | FAA | None FAA-2011-0682 | U.S DOT/OST - Order Setting Out Briefing Schedule | Other | Order | 2013-01-08T05:00:00Z | 2013 | 1 | 2013-01-08T05:00:00Z | 2013-01-08T21:32:22Z | 0 | 0 | 09000064811af968 |
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;