documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2009-0279" 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), last_modified (date)
document_type 3
agency_id 1
- FAA 11
| 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-2009-0279-0010 | FAA | None FAA-2009-0279 | U.S. DOT/OST - Order of Dismissal - CP09SW0002 | Other | Order | 2012-07-05T04:00:00Z | 2012 | 7 | 2012-07-05T04:00:00Z | 2012-07-05T15:41:48Z | 0 | 0 | 0900006481076b59 | ||
| FAA-2009-0279-0011 | FAA | None FAA-2009-0279 | Mesa Airlines, Inc. - Motion to Withdraw Request for a Hearing and Dismiss the Proceeding - CP09SW0002 | Other | Motion | 2012-07-05T04:00:00Z | 2012 | 7 | 2012-07-05T04:00:00Z | 2012-07-05T19:03:19Z | 0 | 0 | 0900006481078600 | ||
| FAA-2009-0279-0009 | FAA | None FAA-2009-0279 | Mesa Airlines, Inc. - Notice of Settlement - CP09SW0002 | Other | Other | 2011-02-23T05:00:00Z | 2011 | 2 | 2011-02-23T05:00:00Z | 2013-07-27T23:45:47Z | 0 | 0 | 0900006480bf53df | ||
| FAA-2009-0279-0008 | FAA | None FAA-2009-0279 | U.S. DOT/OST - Order on Status of Case - CP09SW0002 | Other | Order | 2011-01-04T05:00:00Z | 2011 | 1 | 2011-01-04T05:00:00Z | 2013-08-11T01:39:05Z | 0 | 0 | 0900006480bc4b9f | ||
| FAA-2009-0279-0007 | FAA | None FAA-2009-0279 | U.S.DOT/FAA - Motion for Continuance - CP09SW0002 | Other | Motion | 2010-02-22T05:00:00Z | 2010 | 2 | 2010-02-22T05:00:00Z | 2013-08-11T03:06:56Z | 0 | 0 | 0900006480aa87e2 | ||
| FAA-2009-0279-0005 | FAA | None FAA-2009-0279 | U.S. DOT/OST - Order Granting Motion for Continuance - CP05SW0018 | Supporting & Related Material | Studies/Government/Public | 2010-01-19T05:00:00Z | 2010 | 1 | 2010-01-19T21:37:58Z | 0 | 0 | 0900006480a7fbf3 | |||
| FAA-2009-0279-0006 | FAA | None FAA-2009-0279 | U.S. DOT/OST - Order Granting Motion for Continuance - CP05SW0002 | Other | Order | 2010-01-19T05:00:00Z | 2010 | 1 | 2010-01-19T05:00:00Z | 2013-07-27T23:04:44Z | 0 | 0 | 0900006480a7ffc6 | ||
| FAA-2009-0279-0004 | FAA | None FAA-2009-0279 | U.S. DOT/OST - Notice Of Hearing Dates - CP09SW0002 | Other | Adjudication Notice | 2009-10-23T04:00:00Z | 2009 | 10 | 2009-10-23T04:00:00Z | 2024-11-07T22:10:51Z | 1 | 0 | 0900006480a49cfe | ||
| FAA-2009-0279-0003 | FAA | None FAA-2009-0279 | U.S DOT/OST - Procedural Order - CP09SW0002 | Other | Order | 2009-05-27T04:00:00Z | 2009 | 5 | 2009-05-27T04:00:00Z | 2013-08-11T03:02:12Z | 0 | 0 | 09000064809b6a15 | ||
| FAA-2009-0279-0002 | FAA | None FAA-2009-0279 | U.S. DOT/FAA - Notice Of Assignment Of Proceeding | Notice | Notice | 2009-05-19T04:00:00Z | 2009 | 5 | 2009-05-19T04:00:00Z | 2013-07-27T22:45:01Z | 0 | 0 | 090000648099f935 | ||
| FAA-2009-0279-0001 | FAA | None FAA-2009-0279 | U.S. DOT/FAA - Request for Hearing and Complaint - CP09SW0002 | Other | Request for Hearing and Complaint | 2009-04-30T04:00:00Z | 2009 | 4 | 2009-04-30T04:00:00Z | 2013-07-27T22:43:52Z | 0 | 0 | 090000648096fe53 |
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;