documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2006-25879" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2006-25879-0008 | FAA | None FAA-2006-25879 | U.S. DOT/FAA - Motion for Summary Judgment - CP06NM0006 | Other | Motion | 2007-08-24T04:00:00Z | 2007 | 8 | 2007-08-24T04:00:00Z | 2007-08-25T03:59:59Z | 2024-11-07T02:17:17Z | 1 | 0 | 09000064802b1d1f | |
| FAA-2006-25879-0007 | FAA | None FAA-2006-25879 | U.S. DOT/OST - Administrative Law Judge's Order Dismissing Proceeding with Prejudice - CP06EA0016 | Other | Order | 2006-11-08T05:00:00Z | 2006 | 11 | 2006-11-08T05:00:00Z | 2006-11-09T04:59:59Z | 2024-11-07T02:17:17Z | 1 | 0 | 09000064802b1d1e | |
| FAA-2006-25879-0006 | FAA | None FAA-2006-25879 | U.S. DOT/OST - Notice of Assignment of Proceeding - CP06EA0016 | Notice | Notice | 2006-11-06T05:00:00Z | 2006 | 11 | 2006-11-06T05:00:00Z | 2006-11-07T04:59:59Z | 2024-11-07T02:17:17Z | 1 | 0 | 09000064802b1d1d | |
| FAA-2006-25879-0005 | FAA | None FAA-2006-25879 | George H. Parsells, III - Notification for Request for Hearing be Withdrawn - CP06EA0016 | Notice | Notice | 2006-11-03T05:00:00Z | 2006 | 11 | 2006-11-03T05:00:00Z | 2006-11-04T04:59:59Z | 2024-11-07T02:17:17Z | 1 | 0 | 09000064802b1d1c | |
| FAA-2006-25879-0003 | FAA | None FAA-2006-25879 | U.S. Customs and Border Protection - JFK Airport - Letter - CP06EA0016 | Other | Letter(s) | 2006-10-12T04:00:00Z | 2006 | 10 | 2006-10-12T04:00:00Z | 2006-10-13T03:59:59Z | 2024-11-07T02:17:16Z | 1 | 0 | 09000064802b1d1a | |
| FAA-2006-25879-0002 | FAA | None FAA-2006-25879 | George H. Parsells, III - Request for Hearing - CP06EA0016 | Other | Request for Hearing | 2006-10-12T04:00:00Z | 2006 | 10 | 2006-10-12T04:00:00Z | 2006-10-13T03:59:59Z | 2024-11-07T02:17:16Z | 1 | 0 | 09000064802b1d19 | |
| FAA-2006-25879-0004 | FAA | None FAA-2006-25879 | George H. Parsells, III - Hold Harmless Release Agreement and Postal Money Order - CP06EA0016 | Other | Agreement | 2006-10-12T04:00:00Z | 2006 | 10 | 2006-10-12T04:00:00Z | 2006-10-13T03:59:59Z | 2024-11-07T02:17:16Z | 1 | 0 | 09000064802b1d1b | |
| FAA-2006-25879-0001 | FAA | None FAA-2006-25879 | U.S. DOT/FAA - Request for Hearing and Complaint - CP06EA0016 | Other | Request for Hearing and Complaint | 2006-10-11T04:00:00Z | 2006 | 10 | 2006-10-11T04:00:00Z | 2006-10-12T03:59:59Z | 2024-11-07T02:17:16Z | 1 | 0 | 09000064802b1d17 |
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;