documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2006-25072" and posted_year = 2006 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-2006-25072-0016 | FAA | None FAA-2006-25072 | U.S. DOT/FAA - Director's Determination | Other | Director's Determination | 2006-08-28T04:00:00Z | 2006 | 8 | 2006-08-28T04:00:00Z | 2006-08-29T03:59:59Z | 2024-11-08T04:33:12Z | 1 | 0 | 09000064802be247 | |
| FAA-2006-25072-0015 | FAA | None FAA-2006-25072 | U.S. DOT/FAA - Notice of Extension of Time | Notice | Notice | 2006-07-20T04:00:00Z | 2006 | 7 | 2006-07-20T04:00:00Z | 2006-07-21T03:59:59Z | 2024-11-08T04:33:12Z | 1 | 0 | 09000064802be246 | |
| FAA-2006-25072-0014 | FAA | None FAA-2006-25072 | U.S. DOT/FAA - Notice of Extension of Time | Notice | Notice | 2006-05-24T04:00:00Z | 2006 | 5 | 2006-05-24T04:00:00Z | 2006-05-25T03:59:59Z | 2024-11-08T04:33:11Z | 1 | 0 | 09000064802be245 | |
| FAA-2006-25072-0013-0002 | FAA | None FAA-2006-25072 | SeaSands Air Transportation v. Huntsville International Airport Port Authority - Response from Respondent to Reply of Complaint and Response to Motion to Strike | Other | Response(s) | 2006-01-24T05:00:00Z | 2006 | 1 | 2006-01-24T05:00:00Z | 2006-01-25T04:59:59Z | 2024-11-08T04:33:11Z | 1 | 0 | 09000064802be244 | |
| FAA-2006-25072-0013-0001 | FAA | None FAA-2006-25072 | SeaSands Air Transportation v. Huntsville International Airport Port Authority - Response from Respondent to Reply of Complaint and Response to Motion to Strike | Other | Response(s) | 2006-01-24T05:00:00Z | 2006 | 1 | 2006-01-24T05:00:00Z | 2006-01-25T04:59:59Z | 2024-11-08T04:33:11Z | 1 | 0 | 09000064802be243 | |
| FAA-2006-25072-0012-0001 | FAA | None FAA-2006-25072 | SeaSands Air Transportation v. Huntsville International Airport Port Authority - Complainant's Motion to Strike | Other | Motion | 2006-01-19T05:00:00Z | 2006 | 1 | 2006-01-19T05:00:00Z | 2006-01-20T04:59:59Z | 2024-11-08T04:32:51Z | 1 | 0 | 09000064802be241 | |
| FAA-2006-25072-0012-0002 | FAA | None FAA-2006-25072 | SeaSands Air Transportation v. Huntsville International Airport Port Authority - Complainant's Motion to Strike | Other | Motion | 2006-01-19T05:00:00Z | 2006 | 1 | 2006-01-19T05:00:00Z | 2006-01-20T04:59:59Z | 2024-11-08T04:33:11Z | 1 | 0 | 09000064802be242 | |
| FAA-2006-25072-0011-0001 | FAA | None FAA-2006-25072 | SeaSands Air Transportation v. Huntsville International Airport Port Authority - Complainant's Reply to Respondent's Answer and Motion to Dismiss | Other | Reply | 2006-01-12T05:00:00Z | 2006 | 1 | 2006-01-12T05:00:00Z | 2006-01-13T04:59:59Z | 2024-11-08T04:32:51Z | 1 | 0 | 09000064802be23f | |
| FAA-2006-25072-0011-0002 | FAA | None FAA-2006-25072 | SeaSands Air Transportation v. Huntsville International Airport Port Authority - Complainant's Reply to Respondent's Answer and Motion to Dismiss | Other | Reply | 2006-01-12T05:00:00Z | 2006 | 1 | 2006-01-12T05:00:00Z | 2006-01-13T04:59:59Z | 2024-11-08T04:32:51Z | 1 | 0 | 09000064802be240 |
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;