documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2009-1058" 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), 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-2009-1058-0009 | FAA | None FAA-2009-1058 | U.S. DOT/FAA - Decision | Other | Decision | 2015-06-17T04:00:00Z | 2015 | 6 | 2015-06-17T04:00:00Z | 2024-11-07T23:23:53Z | 1 | 0 | 0900006481b16f96 | ||
| FAA-2009-1058-0008 | FAA | None FAA-2009-1058 | Petition for Exemption; Summaries | Notice | Notice of Receipt of Petition | 2015-05-28T04:00:00Z | 2015 | 5 | 2015-05-28T04:00:00Z | 2015-06-18T03:59:59Z | 2024-11-11T20:56:46Z | 2015-12864 | 1 | 0 | 0900006481b0870f |
| FAA-2009-1058-0007 | FAA | None FAA-2009-1058 | Boeing Commercial Airplanes - Exemption/Rulemaking | Other | Petition(s) | 2015-03-16T04:00:00Z | 2015 | 3 | 2015-03-16T04:00:00Z | 2024-11-07T23:12:04Z | 1 | 0 | 0900006481a42cbb | ||
| FAA-2009-1058-0006 | FAA | None FAA-2009-1058 | U.S. DOT/FAA - Decision | Other | Decision | 2010-12-16T05:00:00Z | 2010 | 12 | 2010-12-16T05:00:00Z | 2024-11-07T22:27:01Z | 1 | 0 | 0900006480bb689c | ||
| FAA-2009-1058-0005 | FAA | None FAA-2009-1058 | The Boeing Company - Additional Information | Other | Additional Information | 2010-09-07T04:00:00Z | 2010 | 9 | 2010-09-07T04:00:00Z | 2013-07-27T23:30:10Z | 0 | 0 | 0900006480b46d5e | ||
| FAA-2009-1058-0004 | FAA | None FAA-2009-1058 | U.S.DOT/FAA - Request for Additional Information | Other | Request | 2010-06-03T04:00:00Z | 2010 | 6 | 2010-06-03T04:00:00Z | 2013-08-11T01:34:51Z | 0 | 0 | 0900006480afa6f6 | ||
| FAA-2009-1058-0003 | FAA | None FAA-2009-1058 | Petition for Exemption; Summary of Petition Received | Rule | Federal Register Publication | 2010-01-20T05:00:00Z | 2010 | 1 | 2010-01-20T05:00:00Z | 2010-02-10T04:59:59Z | 2013-06-17T21:22:45Z | 2010-00927 | 0 | 0 | 0900006480a80394 |
| FAA-2009-1058-0002 | FAA | None FAA-2009-1058 | U.S.DOT/FAA - Acknowledgement Letter/Receipt | Other | Acknowledgement Letter/Receipt | 2009-12-28T05:00:00Z | 2009 | 12 | 2009-12-28T05:00:00Z | 2013-07-27T23:03:11Z | 0 | 0 | 0900006480a7174d | ||
| FAA-2009-1058-0001 | FAA | None FAA-2009-1058 | The Boeing Company - Exemption/Rulemaking | Other | Petition(s) | 2009-11-06T05:00:00Z | 2009 | 11 | 2009-11-06T05:00:00Z | 2024-11-07T22:10:51Z | 1 | 0 | 0900006480a52e2d |
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;