documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "FAA-2007-0004" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2007-0004-0003 | FAA | None FAA-2007-0004 | Special Conditions: Adam Aircraft Industries Model A700; External Fuel Tank Protection During Gear-Up or Emergency Landing | Other | Other | 2007-09-18T04:00:00Z | 2007 | 9 | 2008-01-08T21:38:48Z | 0 | 0 | 09000064802e3246 | |||
| FAA-2007-0004-0006 | FAA | None FAA-2007-0004 | Special Conditions: Malibu Power and Propeller Intl, LLC, Piper Models PA-46-310P and PA-46-350P; Installation of a Full Authority Digital Engine Control (FADEC) Engine | Other | Other | 2007-09-12T04:00:00Z | 2007 | 9 | 2008-01-08T21:51:01Z | 0 | 0 | 09000064802e3260 | |||
| FAA-2007-0004-0010 | FAA | None FAA-2007-0004 | Airworthiness Directives; General Electric Company (GE) CF6-80C2 and CF6-80E1 Series Turbofan Engines | Other | Other | 2007-09-07T04:00:00Z | 2007 | 9 | 2011-06-11T16:11:56Z | 0 | 0 | 09000064802e3271 | |||
| FAA-2007-0004-0005 | FAA | None FAA-2007-0004 | Airworthiness Directives; McDonnell Douglas Model DC-8-11, DC-8- 12, DC-8-21, DC-8-31, DC-8-32, DC-8-33, DC-8-41, DC-8-42, and DC-8-43 Airplanes; Model DC-8F-54 and DC-8F-55 Airplanes; Model DC-8-50, -60, - 60F, -70, and -70F Series Airplanes; Model DC-9-10, -20, -30, -40, and -50 Series Airplanes; Model DC-9-81 (MD-81), DC-9-82 (MD-82), DC-9-83 (MD-83), and DC-9-87 (MD-87) Airplanes; and Model MD | Other | Other | 2007-08-31T04:00:00Z | 2007 | 8 | 2011-06-11T16:11:55Z | 0 | 0 | 09000064802e325c |
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;