documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2010-0532" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-2010-0532-0032 | FAA | None FAA-2010-0532 | U.S. DOT/OST - Order of Dismissal - CP10SW0006 | Other | Order | 2011-12-14T05:00:00Z | 2011 | 12 | 2011-12-14T05:00:00Z | 2011-12-14T14:10:35Z | 0 | 0 | 0900006480f81841 | ||
| FAA-2010-0532-0031 | FAA | None FAA-2010-0532 | U.S. DOT/OST - Order of Dismissal - CP10SW0006 | Other | Order | 2011-12-12T05:00:00Z | 2011 | 12 | 2011-12-12T05:00:00Z | 2011-12-12T18:58:23Z | 0 | 0 | 0900006480f806e2 | ||
| FAA-2010-0532-0030 | FAA | None FAA-2010-0532 | American Airlines, Inc. - Motion to Withdraw the Request for Hearing and Answer - CP10SW0006 | Other | Motion | 2011-12-09T05:00:00Z | 2011 | 12 | 2011-12-09T05:00:00Z | 2011-12-09T20:26:51Z | 0 | 0 | 0900006480f7e8da | ||
| FAA-2010-0532-0029 | FAA | None FAA-2010-0532 | U.S. DOT/OST - Amended Hearing Notice - CP10SW0006 | Other | Adjudication Notice | 2011-11-15T05:00:00Z | 2011 | 11 | 2011-11-15T05:00:00Z | 2011-11-15T14:23:03Z | 0 | 0 | 0900006480f6bcf0 | ||
| FAA-2010-0532-0028 | FAA | None FAA-2010-0532 | U.S. DOT/OST - Hearing Notice - CP10SW0006 | Other | Adjudication Notice | 2011-10-19T04:00:00Z | 2011 | 10 | 2011-10-19T04:00:00Z | 2011-10-19T18:37:37Z | 0 | 0 | 0900006480f55834 | ||
| FAA-2010-0532-0027 | FAA | None FAA-2010-0532 | U.S. DOT/FAA & American Airlines, Inc. - Agreed Motion for Continuance - CP10SW0006 | Other | Motion | 2011-09-12T04:00:00Z | 2011 | 9 | 2011-09-12T04:00:00Z | 2011-09-13T18:51:41Z | 0 | 0 | 0900006480f153c2 | ||
| FAA-2010-0532-0026 | FAA | None FAA-2010-0532 | U.S. DOT/OST- Order Granting Motion for Continuance - CP10SW0006 | Other | Order | 2011-08-29T04:00:00Z | 2011 | 8 | 2011-08-29T04:00:00Z | 2011-08-29T16:07:56Z | 0 | 0 | 0900006480eef67a | ||
| FAA-2010-0532-0025 | FAA | None FAA-2010-0532 | U.S. DOT/OST - Amended Procedural Order and Hearing Notice - CP10SW0006 | Other | Order | 2011-08-10T04:00:00Z | 2011 | 8 | 2011-08-10T04:00:00Z | 2024-11-07T22:33:16Z | 1 | 0 | 0900006480edcd17 | ||
| FAA-2010-0532-0024 | FAA | None FAA-2010-0532 | U.S. DOT/OST - Amended Procedural Order - CP10SW0006 | Other | Order | 2011-07-06T04:00:00Z | 2011 | 7 | 2011-07-06T04:00:00Z | 2024-11-07T22:32:21Z | 1 | 0 | 0900006480eb84ba | ||
| FAA-2010-0532-0023 | FAA | None FAA-2010-0532 | Evan P. Singer - Request - CP10SW0006 | Other | Request | 2011-02-10T05:00:00Z | 2011 | 2 | 2011-02-10T05:00:00Z | 2013-08-11T04:44:06Z | 0 | 0 | 0900006480bdd88a | ||
| FAA-2010-0532-0022 | FAA | None FAA-2010-0532 | U.S. DOT/OST - Amended Procedural Order - CP10SW0006 | Other | Order | 2011-01-05T05:00:00Z | 2011 | 1 | 2011-01-05T05:00:00Z | 2013-08-11T03:12:31Z | 0 | 0 | 0900006480bc4c31 |
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;