documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FAA-2021-0329" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), last_modified (date)
| 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-2021-0329-0007 | FAA | None FAA-2021-0329 | U.S. DOT/FAA - Notice of Extension of Time Dated December 22, 2021 (16-21-06) | Other | Extension of Time | 2021-12-30T05:00:00Z | 2021 | 12 | 2021-12-30T05:00:00Z | 2021-12-30T16:20:57Z | 0 | 0 | 0900006484f01452 | ||
| FAA-2021-0329-0006 | FAA | None FAA-2021-0329 | U.S. DOT/FAA - Notice of Extension of Time Dated November 2, 2021 (16-21-06) | Other | Extension of Time | 2021-11-04T04:00:00Z | 2021 | 11 | 2021-11-04T04:00:00Z | 2021-11-04T15:45:56Z | 0 | 0 | 0900006484e1b62e | ||
| FAA-2021-0329-0005 | FAA | None FAA-2021-0329 | Neil Kunz - Opposition to Motion to Dismiss and Motion for Summary Judgment (16-21-06) | Other | Opposition | 2021-05-26T04:00:00Z | 2021 | 5 | 2021-05-26T04:00:00Z | 2021-05-26T18:43:16Z | 0 | 0 | 0900006484b3a94b | ||
| FAA-2021-0329-0004 | FAA | None FAA-2021-0329 | Salt Lake City Corporation - Motion to Dismiss and Motion for Summary Judgment (16-21-06) | Other | Motion | 2021-05-26T04:00:00Z | 2021 | 5 | 2021-05-26T04:00:00Z | 2021-05-26T18:40:29Z | 0 | 0 | 0900006484b3a45c | ||
| FAA-2021-0329-0003 | FAA | None FAA-2021-0329 | Salt Lake City Department of Airports - Motion to Dismiss and Motion for Summary Judgment (16-21-06) | Other | Motion | 2021-05-12T04:00:00Z | 2021 | 5 | 2021-05-12T04:00:00Z | 2021-05-12T20:05:44Z | 0 | 0 | 0900006484af345f | ||
| FAA-2021-0329-0002 | FAA | None FAA-2021-0329 | Neil Kunz v. Salt Lake City Department of Airports - Complaint (16-21-06) | Other | Complaint | 2021-04-21T04:00:00Z | 2021 | 4 | 2021-04-21T04:00:00Z | 2021-04-21T18:38:42Z | 0 | 0 | 0900006484ab13d3 | ||
| FAA-2021-0329-0001 | FAA | None FAA-2021-0329 | U.S. DOT/FAA - Notice of Docketing (16-21-06) | Other | Adjudication Notice | 2021-04-13T04:00:00Z | 2021 | 4 | 2021-04-13T04:00:00Z | 2021-04-13T15:08:15Z | 0 | 0 | 0900006484aa4bfb |
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;