documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2014-0225" 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-2014-0225-0013 | FAA | None FAA-2014-0225 | Removal of the Prohibition Against Certain Flights in Specified Areas of the Dnipro Flight Information Region | Rule | Final Rule | 2023-10-26T04:00:00Z | 2023 | 10 | 2023-10-26T04:00:00Z | 2023-10-26T13:55:45Z | 2023-23656 | 0 | 0 | 09000064861401d6 | |
| FAA-2014-0225-0012 | FAA | None FAA-2014-0225 | Extension of the Prohibition Against Certain Flights in Specified Areas of the Dnipro Flight Information Region | Rule | Final Rule | 2021-10-06T04:00:00Z | 2021 | 10 | 2021-10-06T04:00:00Z | 2021-10-06T14:22:31Z | 2021-21797 | 0 | 0 | 0900006484dbc629 | |
| FAA-2014-0225-0010 | FAA | None FAA-2014-0225 | Prohibition Against Certain Flights in Specified Areas of the Simferopol and Dnipropetrovsk Flight Information Regions | Rule | Final Rule | 2020-10-16T04:00:00Z | 2020 | 10 | 2020-10-16T04:00:00Z | 2024-11-12T23:25:11Z | 2020-22041 | 1 | 0 | 0900006484912fb1 | |
| FAA-2014-0225-0008 | FAA | None FAA-2014-0225 | Amendment of the Prohibition Against Certain Flights in Specified Areas of the Simferopol and Dnipropetrovsk Flight Information Regions | Rule | Final Rule | 2018-10-19T04:00:00Z | 2018 | 10 | 2018-10-19T04:00:00Z | 2024-11-07T01:05:52Z | 2018-22853 | 1 | 0 | 090000648380ab6c | |
| FAA-2014-0225-0007 | FAA | None FAA-2014-0225 | Prohibitions Against Certain Flights: Simferopoland Dnipropetrovsk Flight Information Regions; Extension | Rule | Final Rule | 2016-10-27T04:00:00Z | 2016 | 10 | 2016-10-27T04:00:00Z | 2024-11-12T06:15:38Z | 2016-25962 | 1 | 0 | 0900006482356ed3 | |
| FAA-2014-0225-0005 | FAA | None FAA-2014-0225 | Extension of the Prohibition Against Certain Flights in the Simferopol and Dnipropetrovsk Flight Information Regions | Rule | Final Rule | 2016-07-22T04:00:00Z | 2016 | 7 | 2016-07-22T04:00:00Z | 2024-11-12T06:08:15Z | 2016-17431 | 1 | 0 | 09000064820ecee9 | |
| FAA-2014-0225-0004 | FAA | None FAA-2014-0225 | Extension of the Prohibition Against Certain Flights in the Simferopol (UKFV) and Dnipropetrovsk (UKDV) Flight Information Regions (FIRs) | Rule | 2015-10-27T04:00:00Z | 2015 | 10 | 2015-10-27T04:00:00Z | 2015-10-27T13:30:45Z | 2015-27334 | 0 | 0 | 0900006481cf1518 | ||
| FAA-2014-0225-0003 | FAA | None FAA-2014-0225 | Prohibition Against Certain Flights in the Simferopol (UKFV) and Dnipropetrovsk (UKDV) Flight Information Regions (FIRs) | Rule | Final Rule | 2014-12-29T05:00:00Z | 2014 | 12 | 2014-12-29T05:00:00Z | 2014-12-29T14:46:15Z | 2014-30365 | 0 | 0 | 0900006481995ff2 | |
| FAA-2014-0225-0001 | FAA | None FAA-2014-0225 | Prohibitions Against Certain Flights in the Simferopol (UKFV) Flight Information Region | Rule | Final Rule | 2014-04-25T04:00:00Z | 2014 | 4 | 2014-04-25T04:00:00Z | 2014-04-25T13:11:40Z | 2014-09545 | 0 | 0 | 09000064816cb379 |
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;