documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where docket_id = "FAA-2016-9132" 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-2016-9132-0015 | FAA | None FAA-2016-9132 | U.S. DOT/FAA - Decision | Other | Decision | 2025-08-13T04:00:00Z | 2025 | 8 | 2025-08-13T04:00:00Z | 2025-08-13T16:34:57Z | 1 | 0 | 09000064b8ef8f29 | ||
| FAA-2016-9132-0014 | FAA | None FAA-2016-9132 | U.S. DOT/FAA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2025-07-01T04:00:00Z | 2025 | 7 | 2025-07-01T04:00:00Z | 2025-07-01T19:42:40Z | 1 | 0 | 09000064b8e4bab4 | ||
| FAA-2016-9132-0013 | FAA | None FAA-2016-9132 | Northrop Grumman Corporation - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2025-06-23T04:00:00Z | 2025 | 6 | 2025-06-23T04:00:00Z | 2025-06-23T21:33:23Z | 1 | 0 | 09000064b8e248db | ||
| FAA-2016-9132-0012 | FAA | None FAA-2016-9132 | U.S. DOT/FAA - Decision | Other | Decision | 2023-07-24T04:00:00Z | 2023 | 7 | 2023-07-24T04:00:00Z | 2024-11-11T21:23:54Z | 1 | 0 | 0900006485d05a1f | ||
| FAA-2016-9132-0011 | FAA | None FAA-2016-9132 | Northrop Grumman Corporation - Exemption/Rulemaking (Request for Extension) | Other | Request for Extension | 2023-06-15T04:00:00Z | 2023 | 6 | 2023-06-15T04:00:00Z | 2024-11-11T21:23:37Z | 1 | 0 | 0900006485b2184f | ||
| FAA-2016-9132-0010 | FAA | None FAA-2016-9132 | Decision | Other | Decision | 2021-04-14T04:00:00Z | 2021 | 4 | 2021-04-14T04:00:00Z | 2021-04-14T13:44:10Z | 0 | 0 | 0900006484aa6c90 | ||
| FAA-2016-9132-0009 | FAA | None FAA-2016-9132 | Northrop Grumman Corporation - Exemption/Rulemaking | Other | Petition(s) | 2021-02-22T05:00:00Z | 2021 | 2 | 2021-02-22T05:00:00Z | 2024-11-12T23:30:18Z | 1 | 0 | 0900006484a4731b | ||
| FAA-2016-9132-0008 | FAA | None FAA-2016-9132 | Decision | Other | Decision | 2019-08-22T04:00:00Z | 2019 | 8 | 2019-08-22T04:00:00Z | 2019-08-22T14:27:04Z | 0 | 0 | 0900006483e8998f | ||
| FAA-2016-9132-0007 | FAA | None FAA-2016-9132 | Northrop Grumman Corporation - Exemption/Rulemaking | Other | Petition(s) | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T04:00:00Z | 2019-07-31T16:57:03Z | 0 | 0 | 0900006483dd7310 | ||
| FAA-2016-9132-0006 | FAA | None FAA-2016-9132 | Decision | Other | Decision | 2019-07-25T04:00:00Z | 2019 | 7 | 2019-07-25T04:00:00Z | 2019-07-25T15:30:43Z | 0 | 0 | 0900006483db71d4 | ||
| FAA-2016-9132-0005 | FAA | None FAA-2016-9132 | Northrop Grumman Corporation - Exemption/Rulemaking | Other | Petition(s) | 2019-04-15T04:00:00Z | 2019 | 4 | 2019-04-15T04:00:00Z | 2019-04-15T15:04:38Z | 0 | 0 | 0900006483b8db2b | ||
| FAA-2016-9132-0004 | FAA | None FAA-2016-9132 | U.S. DOT/FAA- Decision | Other | Decision | 2017-06-02T04:00:00Z | 2017 | 6 | 2017-06-02T04:00:00Z | 2017-06-02T18:02:53Z | 0 | 0 | 0900006482680ef5 | ||
| FAA-2016-9132-0001 | FAA | None FAA-2016-9132 | Northrop Grumman Corporation - Exemption/Rulemaking | Other | Petition(s) | 2016-09-07T04:00:00Z | 2016 | 9 | 2016-09-07T04:00:00Z | 2024-11-11T21:30:17Z | 1 | 0 | 09000064821d6931 |
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;