documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2009-1239" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, open_for_comment, posted_date (date), comment_start_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-2009-1239-0010 | FAA | None FAA-2009-1239 | Decision | Other | Decision | 2018-07-03T04:00:00Z | 2018 | 7 | 2018-07-03T04:00:00Z | 2018-07-03T14:27:45Z | 0 | 0 | 0900006483496972 | ||
| FAA-2009-1239-0009 | FAA | None FAA-2009-1239 | Omni Air International - Exemption/Rulemaking | Other | Petition(s) | 2018-03-29T04:00:00Z | 2018 | 3 | 2018-03-29T04:00:00Z | 2024-11-07T01:24:01Z | 1 | 0 | 0900006483066ecd | ||
| FAA-2009-1239-0008 | FAA | None FAA-2009-1239 | U.S. DOT/FAA - Decision | Other | Decision | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-10T05:00:00Z | 2024-11-12T05:52:28Z | 1 | 0 | 0900006481eb7ccb | ||
| FAA-2009-1239-0007 | FAA | None FAA-2009-1239 | Omni Air International - Exemption/Rulemaking | Other | Petition(s) | 2016-02-03T05:00:00Z | 2016 | 2 | 2016-02-03T05:00:00Z | 2024-11-11T21:22:49Z | 1 | 0 | 0900006481e07b9e | ||
| FAA-2009-1239-0006 | FAA | None FAA-2009-1239 | U.S. DOT/FAA - Decision | Other | Decision | 2014-01-07T05:00:00Z | 2014 | 1 | 2014-01-07T05:00:00Z | 2024-11-07T23:01:15Z | 1 | 0 | 09000064814eec08 | ||
| FAA-2009-1239-0005 | FAA | None FAA-2009-1239 | Omni Air International - Exemption/Rulemaking | Other | Petition(s) | 2013-11-13T05:00:00Z | 2013 | 11 | 2013-11-13T05:00:00Z | 2024-11-12T05:22:57Z | 1 | 0 | 0900006481473a87 | ||
| FAA-2009-1239-0004 | FAA | None FAA-2009-1239 | U.S. DOT/FAA - Decision | Other | Decision | 2012-02-16T05:00:00Z | 2012 | 2 | 2012-02-16T05:00:00Z | 2013-07-28T00:15:24Z | 0 | 0 | 0900006480fb869d | ||
| FAA-2009-1239-0003 | FAA | None FAA-2009-1239 | Omni Air International - Exemption/Rulemaking | Other | Petition(s) | 2011-11-29T05:00:00Z | 2011 | 11 | 2011-11-29T05:00:00Z | 2013-07-28T00:09:15Z | 0 | 0 | 0900006480f7521a | ||
| FAA-2009-1239-0002 | FAA | None FAA-2009-1239 | U.S .DOT/FAA - Denial for Exemption | Other | Other | 2010-03-31T04:00:00Z | 2010 | 3 | 2010-03-31T04:00:00Z | 2013-08-11T04:38:52Z | 0 | 0 | 0900006480acc456 | ||
| FAA-2009-1239-0001 | FAA | None FAA-2009-1239 | Omni Air International - Exemption/Rulemaking | Other | Petition(s) | 2009-12-22T05:00:00Z | 2009 | 12 | 2009-12-22T05:00:00Z | 2024-11-07T22:11:23Z | 1 | 0 | 0900006480a6ba40 |
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;