documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FAA-2006-25877" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
These facets timed out: agency_id, posted_year
document_type 1
- Other · 6 ✖
| 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-25877-0116 | FAA | None FAA-2006-25877 | U.S.DOT/FAA - E.O. 12866 Compliance Document | Other | Other | 2010-01-15T05:00:00Z | 2010 | 1 | 2010-01-15T05:00:00Z | 2013-07-27T23:04:14Z | 0 | 0 | 0900006480a7c0ab | ||
| FAA-2006-25877-0115 | FAA | None FAA-2006-25877 | U.S. DOT/FAA - Final Regulatory Evaluation | Other | Other | 2009-11-05T05:00:00Z | 2009 | 11 | 2009-11-05T05:00:00Z | 2024-11-12T04:49:25Z | 1 | 0 | 0900006480a516c4 | ||
| FAA-2006-25877-0113 | FAA | None FAA-2006-25877 | U.S. DOT/FAA - Opinion and Order (Corrected) | Other | Decision | 2008-01-22T05:00:00Z | 2008 | 1 | 2008-01-22T05:00:00Z | 2013-07-27T20:32:20Z | 0 | 0 | 090000648039f23f | ||
| FAA-2006-25877-0022-0001 | FAA | None FAA-2006-25877 | Aerospace Industries Association and General Aviation Manufacturers Association - Request for Extension of the Comment Period | Other | Request | 2006-12-06T05:00:00Z | 2006 | 12 | 2006-12-06T05:00:00Z | 2006-12-07T04:59:59Z | 2024-11-07T02:06:06Z | 1 | 0 | 09000064802aaa8c | |
| FAA-2006-25877-0022-0002 | FAA | None FAA-2006-25877 | Aerospace Industries Association and General Aviation Manufacturers Association - Request for Extension of the Comment Period | Other | Request | 2006-12-06T05:00:00Z | 2006 | 12 | 2006-12-06T05:00:00Z | 2006-12-07T04:59:59Z | 2024-11-07T02:06:06Z | 1 | 0 | 09000064802aaa8d | |
| FAA-2006-25877-0020 | FAA | None FAA-2006-25877 | Aeronautical Repair Station Association - Request for Extension of Comment Period | Other | Request | 2006-12-05T05:00:00Z | 2006 | 12 | 2006-12-05T05:00:00Z | 2006-12-06T04:59:59Z | 2024-11-07T02:06:06Z | 1 | 0 | 09000064802aaa8a |
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;