documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2008-0221" and document_type = "Notice" 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-2008-0221-0135 | FAA | None FAA-2008-0221 | Operating Limitations at Newark Liberty International Airport | Notice | Request for Comments | 2025-08-12T04:00:00Z | 2025 | 8 | 2025-08-12T04:00:00Z | 2025-08-16T03:59:59Z | 2025-08-20T09:00:28Z | 2025-15301 | 0 | 0 | 09000064b8ef89db |
| FAA-2008-0221-0134 | FAA | None FAA-2008-0221 | EWR Notice FAA-2008-0221 | Notice | Request for Comments | 2025-08-11T04:00:00Z | 2025 | 8 | 2025-08-11T04:00:00Z | 2025-08-13T03:59:59Z | 2025-08-13T19:34:19Z | 0 | 0 | 09000064b8ef5f7a | |
| FAA-2008-0221-0132 | FAA | None FAA-2008-0221 | U.S. DOT/FAA - Newark Order Final | Notice | General Notice | 2025-06-09T04:00:00Z | 2025 | 6 | 2025-06-09T04:00:00Z | 2026-02-14T13:07:38Z | 1 | 0 | 09000064b8de4e00 | ||
| FAA-2008-0221-0122 | FAA | None FAA-2008-0221 | Operating Limitations: Newark Liberty International Airport, Interim Order Establishing Targeted Scheduling Limits | Notice | General Notice | 2025-05-23T04:00:00Z | 2025 | 5 | 2025-05-23T04:00:00Z | 2025-05-23T19:32:38Z | 2025-09376 | 0 | 0 | 09000064b8d9489e | |
| FAA-2008-0221-0119 | FAA | None FAA-2008-0221 | Hearings, Meetings, Proceedings, etc.: Operating Limitations at Newark Liberty International Airport | Notice | Meeting | 2025-05-20T04:00:00Z | 2025 | 5 | 2025-05-20T04:00:00Z | 2025-05-29T03:59:59Z | 2025-05-29T09:01:25Z | 2025-08559 | 0 | 0 | 09000064b8d4c102 |
| FAA-2008-0221-0110 | FAA | None FAA-2008-0221 | Operating Limitations at Newark Liberty International Airport | Notice | Notice of Change | 2014-03-26T04:00:00Z | 2014 | 3 | 2014-03-26T04:00:00Z | 2014-03-26T13:43:21Z | 2014-06663 | 0 | 0 | 09000064816819d7 | |
| FAA-2008-0221-0109 | FAA | None FAA-2008-0221 | Orders Limiting Operations: Newark Liberty International Airport | Notice | 2013-09-19T04:00:00Z | 2013 | 9 | 2013-09-19T04:00:00Z | 2013-09-19T18:32:42Z | 2013-22813 | 0 | 0 | 090000648142b43f | ||
| FAA-2008-0221-0108 | FAA | None FAA-2008-0221 | Operating Limitations at Newark Liberty International Airport | Notice | Notice of Change | 2013-05-14T04:00:00Z | 2013 | 5 | 2013-05-14T04:00:00Z | 2024-11-12T05:16:50Z | 2013-11489 | 1 | 0 | 09000064812e2e98 |
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;