documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2006-25049" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, comment_end_date, last_modified, open_for_comment, 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-25049-0009 | FAA | None FAA-2006-25049 | U.S. DOT/FAA - Decision | Other | Decision | 2009-12-30T05:00:00Z | 2009 | 12 | 2009-12-30T05:00:00Z | 2024-11-07T22:11:12Z | 1 | 0 | 0900006480a73b0c | ||
| FAA-2006-25049-0008 | FAA | None FAA-2006-25049 | American Airlines - Exemption/Rulemaking | Other | Petition(s) | 2009-10-14T04:00:00Z | 2009 | 10 | 2009-10-14T04:00:00Z | 2024-11-07T22:12:13Z | 1 | 0 | 0900006480a3f3a4 | ||
| FAA-2006-25049-0007 | FAA | None FAA-2006-25049 | U.S. DOT/FAA - Decision | Other | Decision | 2008-09-12T04:00:00Z | 2008 | 9 | 2008-09-12T04:00:00Z | 2013-07-27T22:24:46Z | 0 | 0 | 0900006480700762 | ||
| FAA-2006-25049-0006 | FAA | None FAA-2006-25049 | Petition for Exemption; Summary of Petition Received | Rule | Federal Register Publication | 2008-03-26T04:00:00Z | 2008 | 3 | 2008-03-26T04:00:00Z | 2008-04-16T03:59:59Z | 2008-03-26T13:26:21Z | E8-06147 | 0 | 0 | 0900006480409239 |
| FAA-2006-25049-0005 | FAA | None FAA-2006-25049 | U.S. DOT/FAA - Acknowledgement Letter/Receipt | Other | Acknowledgement Letter/Receipt | 2008-03-11T04:00:00Z | 2008 | 3 | 2008-03-11T04:00:00Z | 2013-07-27T20:37:22Z | 0 | 0 | 09000064803f14dc | ||
| FAA-2006-25049-0004 | FAA | None FAA-2006-25049 | American Airlines - Exemption/Rulemaking | Other | Petition for Reconsideration | 2008-02-08T05:00:00Z | 2008 | 2 | 2008-02-08T05:00:00Z | 2013-08-11T04:02:51Z | 0 | 0 | 09000064803aaf79 | ||
| FAA-2006-25049-0003 | FAA | None FAA-2006-25049 | U.S. DOT/FAA - Decision | Other | Decision | 2007-12-14T05:00:00Z | 2007 | 12 | 2007-12-14T05:00:00Z | 2006-10-05T03:59:59Z | 2013-07-27T20:27:59Z | 0 | 0 | 0900006480377a74 | |
| FAA-2006-25049-0002 | FAA | None FAA-2006-25049 | U.S. DOT/FAA - Notice of Petitions for Exemption Received | Rule | Federal Register Publication | 2006-10-04T04:00:00Z | 2006 | 10 | 2006-10-04T04:00:00Z | 2006-10-05T03:59:59Z | 2024-11-11T22:01:57Z | 1 | 0 | 09000064802b07d0 | |
| FAA-2006-25049-0001 | FAA | None FAA-2006-25049 | American Airlines - Exemption/Rulemaking | Other | Petition(s) | 2006-06-09T04:00:00Z | 2006 | 6 | 2006-06-09T04:00:00Z | 2006-06-10T03:59:59Z | 2024-11-11T22:01:57Z | 1 | 0 | 09000064802b07cf |
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;