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 = "Rule" 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-0116 | FAA | None FAA-2008-0221 | Change of Newark Liberty International Airport Designation: Availability of Final CATEX Declaration and Supporting Material | Rule | Interim Final Rule | 2016-05-24T04:00:00Z | 2016 | 5 | 2016-05-24T04:00:00Z | 2024-11-11T21:26:21Z | 2016-12252 | 1 | 0 | 0900006481feacd9 | |
| FAA-2008-0221-0114 | FAA | None FAA-2008-0221 | Change of Newark Liberty International Airport (EWR) Designation | Rule | Correction | 2016-04-06T04:00:00Z | 2016 | 4 | 2016-04-06T04:00:00Z | 2024-11-07T23:41:04Z | 2016-07910 | 1 | 0 | 0900006481f2e143 | |
| FAA-2008-0221-0106 | FAA | None FAA-2008-0221 | Operating Limitations at Newark Liberty International Airport: Extension | Rule | Federal Register Publication | 2011-04-04T04:00:00Z | 2011 | 4 | 2011-04-04T04:00:00Z | 2024-11-12T04:59:09Z | 2011-07845 | 1 | 0 | 0900006480c1ae63 | |
| FAA-2008-0221-0104 | FAA | None FAA-2008-0221 | Operating Limitations at Newark Liberty International Airport | Rule | Federal Register Publication | 2009-10-07T04:00:00Z | 2009 | 10 | 2009-10-07T04:00:00Z | 2009-10-08T03:59:59Z | 2024-11-07T22:11:22Z | E9-24118 | 1 | 0 | 0900006480a3dd15 |
| FAA-2008-0221-0103 | FAA | None FAA-2008-0221 | Operating Limitations at John F. Kennedy International Airport and Newark Liberty International Airport | Rule | Federal Register Publication | 2009-07-15T04:00:00Z | 2009 | 7 | 2009-07-15T04:00:00Z | 2009-07-15T17:47:39Z | E9-16512 | 0 | 0 | 09000064809f2041 | |
| FAA-2008-0221-0095 | FAA | None FAA-2008-0221 | Operating Limitations at Newark Liberty International Airport | Rule | Federal Register Publication | 2009-06-05T04:00:00Z | 2009 | 6 | 2009-06-05T04:00:00Z | 2009-06-20T03:59:59Z | 2009-06-05T18:38:07Z | E9-13190 | 0 | 0 | 09000064809c683a |
| FAA-2008-0221-0091 | FAA | None FAA-2008-0221 | Operating Limitations at Newark Liberty International Airport | Rule | Federal Register Publication | 2008-05-21T04:00:00Z | 2008 | 5 | 2008-05-21T04:00:00Z | 2008-05-21T13:39:34Z | 08-01278 | 0 | 0 | 09000064805f67a8 | |
| FAA-2008-0221-0001 | FAA | None FAA-2008-0221 | Operating Limitations at Newark Liberty International Airport | Rule | Federal Register Publication | 2008-03-18T04:00:00Z | 2008 | 3 | 2008-03-18T04:00:00Z | 2008-04-02T03:59:59Z | 2024-11-07T21:51:46Z | 08-01037 | 1 | 0 | 09000064803fc37b |
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;