documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2011-0680" and posted_year = 2012 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-2011-0680-0015 | FAA | None FAA-2011-0680 | U.S. DOT/FAA - Post-Trial Brief | Other | Brief | 2012-12-13T05:00:00Z | 2012 | 12 | 2012-12-13T05:00:00Z | 2012-12-13T21:09:37Z | 0 | 0 | 090000648118b7ae | ||
| FAA-2011-0680-0014 | FAA | None FAA-2011-0680 | U.S. DOT/OST - Order Setting Out Briefing Schedule | Other | Order | 2012-11-08T05:00:00Z | 2012 | 11 | 2012-11-08T05:00:00Z | 2012-11-08T21:40:59Z | 0 | 0 | 090000648116394d | ||
| FAA-2011-0680-0013 | FAA | None FAA-2011-0680 | SkyWest Airlines Inc. - Production of Confidential Documents Pursuant to Order Granting Respodent's Motion for Protective and/or Confidential Order in Part | Other | Additional Information | 2012-09-06T04:00:00Z | 2012 | 9 | 2012-09-06T04:00:00Z | 2012-09-06T15:30:39Z | 0 | 0 | 0900006481109828 | ||
| FAA-2011-0680-0012 | FAA | None FAA-2011-0680 | SkyWest Airlines, Inc. - Motion for Protective Order and/or Confidential Order | Other | Motion | 2012-08-15T04:00:00Z | 2012 | 8 | 2012-08-15T04:00:00Z | 2012-08-15T20:57:01Z | 0 | 0 | 09000064810dd069 | ||
| FAA-2011-0680-0010 | FAA | None FAA-2011-0680 | U.S. DOT/FAA - Complaint's Opposition to Respondent Motion for Protective and/or Confidential Order | Other | Opposition | 2012-08-14T04:00:00Z | 2012 | 8 | 2012-08-14T04:00:00Z | 2012-08-14T15:03:36Z | 0 | 0 | 09000064810d63cf | ||
| FAA-2011-0680-0011 | FAA | None FAA-2011-0680 | U.S. DOT/OST - Order Granting Motion In Part | Other | Order | 2012-08-14T04:00:00Z | 2012 | 8 | 2012-08-14T04:00:00Z | 2012-08-14T15:35:48Z | 0 | 0 | 09000064810d6bbe | ||
| FAA-2011-0680-0009 | FAA | None FAA-2011-0680 | U.S. DOT/FAA - Joint Motion to Consolidate | Other | Motion | 2012-06-28T04:00:00Z | 2012 | 6 | 2012-06-28T04:00:00Z | 2012-06-28T14:25:26Z | 0 | 0 | 090000648106d493 | ||
| FAA-2011-0680-0008 | FAA | None FAA-2011-0680 | U.S. DOT/OST - Order Granting Joint Motion to Consolidate and Amended Notice of Hearing Dates | Other | Order | 2012-06-22T04:00:00Z | 2012 | 6 | 2012-06-22T04:00:00Z | 2012-06-22T14:37:41Z | 0 | 0 | 090000648105f745 | ||
| FAA-2011-0680-0007 | FAA | None FAA-2011-0680 | U.S. DOT/OST - Notice of Hearing Dates | Other | Adjudication Notice | 2012-06-01T04:00:00Z | 2012 | 6 | 2012-06-01T04:00:00Z | 2012-06-01T20:41:55Z | 0 | 0 | 0900006481025279 |
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;