documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2012-0872" 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), 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-0016 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Notice and Request to Parties | Other | Adjudication Notice | 2013-10-25T04:00:00Z | 2013 | 10 | 2013-10-25T04:00:00Z | 2013-10-25T18:29:05Z | 0 | 0 | 09000064814610ac | ||
| FAA-2012-0872-0015 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Notice | Other | Adjudication Notice | 2013-10-01T04:00:00Z | 2013 | 10 | 2013-10-01T04:00:00Z | 2024-11-12T05:20:28Z | 1 | 0 | 0900006481442983 | ||
| FAA-2012-0872-0014 | FAA | None FAA-2012-0872 | Skywest Airlines, Inc. - First Discovery Request | Other | Request | 2013-10-01T04:00:00Z | 2013 | 10 | 2013-10-01T04:00:00Z | 2013-10-01T14:34:16Z | 0 | 0 | 090000648144222a | ||
| FAA-2012-0872-0013 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Amended Procedural Orders | Other | Order | 2013-08-30T04:00:00Z | 2013 | 8 | 2013-08-30T04:00:00Z | 2013-08-30T16:04:44Z | 0 | 0 | 09000064813d134f | ||
| FAA-2012-0872-0012 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Amended Procedural Orders | Other | Order | 2013-08-23T04:00:00Z | 2013 | 8 | 2013-08-23T04:00:00Z | 2013-08-23T17:43:31Z | 0 | 0 | 09000064813c1a58 | ||
| FAA-2012-0872-0011 | FAA | None FAA-2012-0872 | Skywest Airlines - Motion to Consolidate | Other | Motion | 2013-07-15T04:00:00Z | 2013 | 7 | 2013-07-15T04:00:00Z | 2013-07-15T17:48:14Z | 0 | 0 | 0900006481367193 | ||
| FAA-2012-0872-0010 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Order Granting In Part And Denying In Part Motion To Consolidate | Other | Order | 2013-07-05T04:00:00Z | 2013 | 7 | 2013-07-05T04:00:00Z | 2013-07-05T16:06:24Z | 0 | 0 | 09000064813574ce | ||
| FAA-2012-0872-0009 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Postponement | Other | Administrative Adjudication | 2013-06-14T04:00:00Z | 2013 | 6 | 2013-06-14T04:00:00Z | 2013-06-14T16:43:57Z | 0 | 0 | 0900006481320e80 | ||
| FAA-2012-0872-0008 | FAA | None FAA-2012-0872 | Skywest Airlines, Inc. - Notice of Association and Appearance of Counsel | Other | Correspondence | 2013-06-03T04:00:00Z | 2013 | 6 | 2013-06-03T04:00:00Z | 2013-06-03T20:02:50Z | 0 | 0 | 0900006481308025 | ||
| FAA-2012-0872-0007 | FAA | None FAA-2012-0872 | U.S. DOT/OST - Hearing Notice | Other | Adjudication Notice | 2013-05-22T04:00:00Z | 2013 | 5 | 2013-05-22T04:00:00Z | 2013-05-22T14:27:08Z | 0 | 0 | 09000064812f2a36 |
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;