documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2005-22673" 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-2005-22673-0010 | FAA | In the Matter of Miami Air Lease, Inc. - Complaint - CP05SO0047 FAA-2005-22673 | U.S. DOT/FAA - Agency's Prehearing Submissions - CP05SO0047 | Other | Witness List | 2006-11-09T05:00:00Z | 2006 | 11 | 2006-11-09T05:00:00Z | 2006-11-10T04:59:59Z | 2024-11-08T04:22:49Z | 1 | 0 | 09000064802b5c7f | |
| FAA-2005-22673-0009 | FAA | In the Matter of Miami Air Lease, Inc. - Complaint - CP05SO0047 FAA-2005-22673 | U.S. DOT/FAA - Motion to Terminate Proceedings - CP05SO0047 | Other | Motion | 2006-11-08T05:00:00Z | 2006 | 11 | 2006-11-08T05:00:00Z | 2006-11-09T04:59:59Z | 2024-11-08T04:15:37Z | 1 | 0 | 09000064802b5c8b | |
| FAA-2005-22673-0008 | FAA | In the Matter of Miami Air Lease, Inc. - Complaint - CP05SO0047 FAA-2005-22673 | U.S. DOT/OST - Administrative Law Judge's Order Dismissing Proceeding with Prejudice - CP05SO0047 | Other | Order | 2006-11-02T05:00:00Z | 2006 | 11 | 2006-11-02T05:00:00Z | 2006-11-03T04:59:59Z | 2024-11-08T04:15:36Z | 1 | 0 | 09000064802b5c8a | |
| FAA-2005-22673-0005 | FAA | In the Matter of Miami Air Lease, Inc. - Complaint - CP05SO0047 FAA-2005-22673 | U.S. DOT/OST - Administrative Law Judge's Order Permitting Withdrawal of Counsel and Amending Service List - CP05SO0047 | Other | Order | 2006-03-09T05:00:00Z | 2006 | 3 | 2006-03-09T05:00:00Z | 2006-03-10T04:59:59Z | 2024-11-08T04:15:48Z | 1 | 0 | 09000064802b5c87 | |
| FAA-2005-22673-0004-0002 | FAA | In the Matter of Miami Air Lease, Inc. - Complaint - CP05SO0047 FAA-2005-22673 | Maimi Air Lease, Inc. - Motion to Withdraw - CP05SO0047 | Other | Motion | 2006-02-28T05:00:00Z | 2006 | 2 | 2006-02-28T05:00:00Z | 2006-03-01T04:59:59Z | 2024-11-08T04:22:50Z | 1 | 0 | 09000064802b5c86 | |
| FAA-2005-22673-0004-0001 | FAA | In the Matter of Miami Air Lease, Inc. - Complaint - CP05SO0047 FAA-2005-22673 | Maimi Air Lease, Inc. - Motion to Withdraw - CP05SO0047 | Other | Motion | 2006-02-28T05:00:00Z | 2006 | 2 | 2006-02-28T05:00:00Z | 2006-03-01T04:59:59Z | 2024-11-08T04:22:50Z | 1 | 0 | 09000064802b5c85 | |
| FAA-2005-22673-0002 | FAA | In the Matter of Miami Air Lease, Inc. - Complaint - CP05SO0047 FAA-2005-22673 | McDonald & McDonald - Answer - CP05SO0047 | Other | Answer | 2005-12-07T05:00:00Z | 2005 | 12 | 2005-12-07T05:00:00Z | 2005-12-08T04:59:59Z | 2024-11-08T04:22:49Z | 1 | 0 | 09000064802b5c81 | |
| FAA-2005-22673-0001 | FAA | In the Matter of Miami Air Lease, Inc. - Complaint - CP05SO0047 FAA-2005-22673 | U.S. DOT/FAA - Request for Hearing and Complaint - CP05SO0047 | Other | Request for Hearing and Complaint | 2005-11-22T05:00:00Z | 2005 | 11 | 2005-11-22T05:00:00Z | 2005-11-23T04:59:59Z | 2024-11-08T04:22:49Z | 1 | 0 | 09000064802b5c7d |
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;