documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2012-0909" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-0909-0008 | FAA | None FAA-2012-0909 | U.S. DOT/OST - Notice of Assignment and Order of Chief Administrative Law Judge Denying Motion to Dismiss Request for Hearing | Other | Order | 2016-01-20T05:00:00Z | 2016 | 1 | 2016-01-20T05:00:00Z | 2016-01-21T13:46:35Z | 0 | 0 | 0900006481e2301e | ||
| FAA-2012-0909-0007 | FAA | None FAA-2012-0909 | AeroWeld, Inc. - Withdrawal of Request for Hearing | Other | Withdrawal | 2013-03-22T04:00:00Z | 2013 | 3 | 2013-03-22T04:00:00Z | 2024-11-07T22:51:03Z | 1 | 0 | 0900006481239d69 | ||
| FAA-2012-0909-0006 | FAA | None FAA-2012-0909 | U.S. DOT/OST - Order Of Dismissal | Other | Order | 2013-03-15T04:00:00Z | 2013 | 3 | 2013-03-15T04:00:00Z | 2024-11-07T22:46:23Z | 1 | 0 | 090000648122b4bc | ||
| FAA-2012-0909-0005 | FAA | None FAA-2012-0909 | U.S. DOT/OST - Procedural Order | Other | Order | 2013-02-26T05:00:00Z | 2013 | 2 | 2013-02-26T05:00:00Z | 2013-02-26T17:08:10Z | 0 | 0 | 0900006481206e6c | ||
| FAA-2012-0909-0004 | FAA | None FAA-2012-0909 | U.S. DOT/FAA - Complaint | Other | Complaint | 2013-02-21T05:00:00Z | 2013 | 2 | 2013-02-21T05:00:00Z | 2013-02-21T19:20:33Z | 0 | 0 | 09000064811fe781 | ||
| FAA-2012-0909-0003 | FAA | None FAA-2012-0909 | U.S. DOT/OST - Order Reassigning Proceeding | Other | Order | 2013-02-14T05:00:00Z | 2013 | 2 | 2013-02-14T05:00:00Z | 2013-02-14T19:04:42Z | 0 | 0 | 09000064811f61b2 | ||
| FAA-2012-0909-0002 | FAA | None FAA-2012-0909 | Aero-Weld, Inc. - Follow-up to Phone Conversation | Other | Letter(s) | 2012-12-20T05:00:00Z | 2012 | 12 | 2012-12-20T05:00:00Z | 2012-12-20T19:40:24Z | 0 | 0 | 0900006481192615 | ||
| FAA-2012-0909-0001 | FAA | None FAA-2012-0909 | U.S. DOT/FAA - Complainant's Motion to Dismiss the Request For Hearing | Other | Motion | 2012-11-16T05:00:00Z | 2012 | 11 | 2012-11-16T05:00:00Z | 2012-11-16T20:21:13Z | 0 | 0 | 09000064811689b9 |
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;