documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2005-22085" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, posted_date (date), comment_start_date (date), comment_end_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-2005-22085-0007-0002 | FAA | In the Matter of Airport Equipment Rental - Complaint - CP05MN0025 FAA-2005-22085 | Airport Equipment Rentals - Notice of Change of Hearing - CP05NM0025 | Notice | Notice of Change | 2005-10-24T04:00:00Z | 2005 | 10 | 2005-10-24T04:00:00Z | 2005-10-25T03:59:59Z | 2024-11-11T22:35:35Z | 1 | 0 | 09000064802be82e | |
| FAA-2005-22085-0007-0001 | FAA | In the Matter of Airport Equipment Rental - Complaint - CP05MN0025 FAA-2005-22085 | Airport Equipment Rentals - Notice of Change of Hearing - CP05NM0025 | Notice | Notice of Change | 2005-10-24T04:00:00Z | 2005 | 10 | 2005-10-24T04:00:00Z | 2005-10-25T03:59:59Z | 2024-11-11T22:35:34Z | 1 | 0 | 09000064802be82d | |
| FAA-2005-22085-0006 | FAA | In the Matter of Airport Equipment Rental - Complaint - CP05MN0025 FAA-2005-22085 | U.S. DOT/FAA - Complainant's Preliminary Witness and Exhibit Lists - CP05NM0025 | Other | Witness List | 2005-10-21T04:00:00Z | 2005 | 10 | 2005-10-21T04:00:00Z | 2005-10-22T03:59:59Z | 2024-11-11T22:35:34Z | 1 | 0 | 09000064802be82c | |
| FAA-2005-22085-0005 | FAA | In the Matter of Airport Equipment Rental - Complaint - CP05MN0025 FAA-2005-22085 | U.S. DOT/FAA - Complainant's Preliminary Witness and Exhibit Lists - CP05NM0025 | Other | Witness List | 2005-10-12T04:00:00Z | 2005 | 10 | 2005-10-12T04:00:00Z | 2005-10-13T03:59:59Z | 2024-11-11T22:35:34Z | 1 | 0 | 09000064802be82b | |
| FAA-2005-22085-0003 | FAA | In the Matter of Airport Equipment Rental - Complaint - CP05MN0025 FAA-2005-22085 | U.S. DOT/OST - Memorandum - CP05NM0025 | Other | Memo, Action Memo or Letter | 2005-09-16T04:00:00Z | 2005 | 9 | 2005-09-16T04:00:00Z | 2005-09-17T03:59:59Z | 2024-11-11T22:35:34Z | 1 | 0 | 09000064802be829 | |
| FAA-2005-22085-0004 | FAA | In the Matter of Airport Equipment Rental - Complaint - CP05MN0025 FAA-2005-22085 | U.S. DOT/OST - Order - CP05NM0025 | Other | Order | 2005-09-16T04:00:00Z | 2005 | 9 | 2005-09-16T04:00:00Z | 2005-09-17T03:59:59Z | 2024-11-11T22:35:34Z | 1 | 0 | 09000064802be82a | |
| FAA-2005-22085-0002 | FAA | In the Matter of Airport Equipment Rental - Complaint - CP05MN0025 FAA-2005-22085 | U.S. DOT/OST - Notice of Assignment of Proceeding - CP05NM0025 | Notice | Notice | 2005-09-15T04:00:00Z | 2005 | 9 | 2005-09-15T04:00:00Z | 2005-09-16T03:59:59Z | 2024-11-11T22:35:33Z | 1 | 0 | 09000064802be822 | |
| FAA-2005-22085-0001 | FAA | In the Matter of Airport Equipment Rental - Complaint - CP05MN0025 FAA-2005-22085 | U.S. DOT/FAA - Complaint - CP05NM0025 | Other | Complaint | 2005-08-17T04:00:00Z | 2005 | 8 | 2005-08-17T04:00:00Z | 2005-08-18T03:59:59Z | 2024-11-11T22:35:14Z | 1 | 0 | 09000064802be814 |
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;