documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2012-0468" 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, 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-2012-0468-0011 | FAA | None FAA-2012-0468 | Aero Micronesia, Inc. - Respondent's Proposed Witness List | Other | Witness List | 2012-12-21T05:00:00Z | 2012 | 12 | 2012-12-21T05:00:00Z | 2024-11-12T05:10:01Z | 1 | 0 | 0900006481193dea | ||
| FAA-2012-0468-0010 | FAA | None FAA-2012-0468 | U.S. DOT/FAA - Complainant's Reply to Respondent's Motion to Strike | Other | Reply | 2012-08-15T04:00:00Z | 2012 | 8 | 2012-08-15T04:00:00Z | 2012-08-15T17:56:23Z | 0 | 0 | 09000064810da8e9 | ||
| FAA-2012-0468-0009 | FAA | None FAA-2012-0468 | U.S. DOT/FAA - Amended Complaint | Other | Complaint | 2012-07-12T04:00:00Z | 2012 | 7 | 2012-07-12T04:00:00Z | 2012-07-12T14:00:11Z | 0 | 0 | 0900006481087ac2 | ||
| FAA-2012-0468-0008 | FAA | None FAA-2012-0468 | U.S. DOT/FAA - Proposed Procedural Schedule, Statement Re-Settlement Efforts, and Proposed Hearing Site | Other | Proposal(s) | 2012-07-06T04:00:00Z | 2012 | 7 | 2012-07-06T04:00:00Z | 2012-07-06T19:38:58Z | 0 | 0 | 0900006481078762 | ||
| FAA-2012-0468-0007 | FAA | None FAA-2012-0468 | U.S. DOT/FAA - Complainant's Reply to Respondent's Motion to Dismiss | Other | Reply | 2012-07-05T04:00:00Z | 2012 | 7 | 2012-07-05T04:00:00Z | 2012-07-05T15:01:25Z | 0 | 0 | 09000064810722db | ||
| FAA-2012-0468-0006 | FAA | None FAA-2012-0468 | Aero Micronesia, Inc. dba Asia Pacific Airlines - Notice of Appearance | Other | Adjudication Notice | 2012-06-26T04:00:00Z | 2012 | 6 | 2012-06-26T04:00:00Z | 2012-06-26T20:05:54Z | 0 | 0 | 0900006481063d0f | ||
| FAA-2012-0468-0005 | FAA | None FAA-2012-0468 | Aero Micronesia, Inc. d/b/a Asia Pacific Airlines - Re: Answer of Aero Micronesia, Inc. | Other | Response(s) | 2012-06-25T04:00:00Z | 2012 | 6 | 2012-06-25T04:00:00Z | 2012-06-25T17:20:23Z | 0 | 0 | 090000648106014a | ||
| FAA-2012-0468-0003 | FAA | None FAA-2012-0468 | U.S. DOT/OST - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2012-05-22T04:00:00Z | 2012 | 5 | 2012-05-22T04:00:00Z | 2012-05-22T14:38:14Z | 0 | 0 | 090000648101861e | ||
| FAA-2012-0468-0004 | FAA | None FAA-2012-0468 | U.S. DOT/OST - Order of Chief Administrative Law Judge Establishing Procedures | Other | Order | 2012-05-22T04:00:00Z | 2012 | 5 | 2012-05-22T04:00:00Z | 2012-05-22T14:50:14Z | 0 | 0 | 090000648101861f | ||
| FAA-2012-0468-0001 | FAA | None FAA-2012-0468 | Aero Micronesia, Inc. d/b/a Asia Pacific Airlines, Inc. - Request for Hearing | Other | Request for Hearing | 2012-05-17T04:00:00Z | 2012 | 5 | 2012-05-17T04:00:00Z | 2012-05-17T20:20:26Z | 0 | 0 | 090000648100e067 | ||
| FAA-2012-0468-0002 | FAA | None FAA-2012-0468 | Aero Micronesia, Inc. d/b/a Asia Pacific Airlines, Inc. - Request for Hearing - Request for Hearing and Complaint | Other | Request for Hearing | 2012-05-17T04:00:00Z | 2012 | 5 | 2012-05-17T04:00:00Z | 2012-05-18T18:50:28Z | 0 | 0 | 090000648100e068 |
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;