documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FAA-2004-17005" 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-2004-17005-20483 | FAA | Washington D.C. Metropolitan Area Special Flight Rules Area FAA-2004-17005 | Special Flight Rules Areas: Washington, DC Metropolitan Area; Technical Amendment | Rule | Final Rule | 2018-03-29T04:00:00Z | 2018 | 3 | 2018-03-29T04:00:00Z | 2024-11-07T01:23:47Z | 2018-06335 | 1 | 0 | 0900006483061938 | |
| FAA-2004-17005-20481 | FAA | Washington D.C. Metropolitan Area Special Flight Rules Area FAA-2004-17005 | Washington, DC Metropolitan Area Special Flight Rules Area: OMB Approval of Information Collection | Rule | Final Rule | 2011-06-14T04:00:00Z | 2011 | 6 | 2011-06-14T04:00:00Z | 2024-11-07T22:30:56Z | 2011-14552 | 1 | 0 | 0900006480e4ef81 | |
| FAA-2004-17005-20479 | FAA | Washington D.C. Metropolitan Area Special Flight Rules Area FAA-2004-17005 | Washington, DC Metropolitan Area Special Flight Rules Area; Correction | Rule | Federal Register Publication | 2008-12-29T05:00:00Z | 2008 | 12 | 2008-12-29T05:00:00Z | 2024-11-12T04:27:22Z | E8-30730 | 1 | 0 | 0900006480805e6f | |
| FAA-2004-17005-20476 | FAA | Washington D.C. Metropolitan Area Special Flight Rules Area FAA-2004-17005 | Washington, DC Metropolitan Area Special Flight Rules Area | Rule | Federal Register Publication | 2008-12-16T05:00:00Z | 2008 | 12 | 2008-12-16T05:00:00Z | 2017-09-28T01:06:33Z | E8-29711 | 0 | 0 | 09000064807dd862 | |
| FAA-2004-17005-17631 | FAA | Washington D.C. Metropolitan Area Special Flight Rules Area FAA-2004-17005 | U.S. DOT/FAA - Notice of Proposed Rulemaking (NPRM); Reopening of Comment Period | Rule | Federal Register Publication | 2005-11-07T05:00:00Z | 2005 | 11 | 2005-11-07T05:00:00Z | 2005-11-08T04:59:59Z | 2024-11-08T05:30:56Z | 1 | 0 | 09000064802e8706 | |
| FAA-2004-17005-0201 | FAA | Washington D.C. Metropolitan Area Special Flight Rules Area FAA-2004-17005 | U.S. DOT/FAA - Notice of Proposed Rulemaking; Correction | Rule | Federal Register Publication | 2005-08-24T04:00:00Z | 2005 | 8 | 2005-08-24T04:00:00Z | 2005-08-25T03:59:59Z | 2024-11-12T02:13:05Z | 1 | 0 | 09000064802e9350 | |
| FAA-2004-17005-0001 | FAA | Washington D.C. Metropolitan Area Special Flight Rules Area FAA-2004-17005 | U.S. DOT/FAA - Notice of Proposed Rulemaking (NPRM) | Rule | Federal Register Publication | 2005-08-04T04:00:00Z | 2005 | 8 | 2005-08-04T04:00:00Z | 2005-11-03T04:59:59Z | 2024-11-12T02:10:52Z | 1 | 0 | 09000064802e6127 |
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;