documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2021-0224" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-0224-0008 | FAA | None FAA-2021-0224 | U.S. DOT/FAA - Notice of Extension of Time Dated December 21, 2021 (16-21-02) | Other | Extension of Time | 2021-12-30T05:00:00Z | 2021 | 12 | 2021-12-30T05:00:00Z | 2021-12-30T16:07:15Z | 0 | 0 | 0900006484f01450 | ||
| FAA-2021-0224-0007 | FAA | None FAA-2021-0224 | U.S. DOT/FAA - Notice of Extension of Time Dated October 28, 2021 (16-21-02) | Other | Extension of Time | 2021-11-01T04:00:00Z | 2021 | 11 | 2021-11-01T04:00:00Z | 2021-11-01T15:21:33Z | 0 | 0 | 0900006484e04453 | ||
| FAA-2021-0224-0006 | FAA | None FAA-2021-0224 | U.S. DOT/FAA - Notice of Extension of Time Dated September 9, 2021 (16-21-02) | Other | Extension of Time | 2021-09-16T04:00:00Z | 2021 | 9 | 2021-09-16T04:00:00Z | 2021-11-01T15:16:52Z | 0 | 0 | 0900006484d87a96 | ||
| FAA-2021-0224-0005 | FAA | None FAA-2021-0224 | City of Westfield, Massachusetts - Rebuttal (16-21-02) | Other | Rebuttal | 2021-05-12T04:00:00Z | 2021 | 5 | 2021-05-12T04:00:00Z | 2021-05-12T19:51:11Z | 0 | 0 | 0900006484af3dbd | ||
| FAA-2021-0224-0004 | FAA | None FAA-2021-0224 | Joseph Occhiuzzo - Answer (16-21-02) | Other | Answer | 2021-05-04T04:00:00Z | 2021 | 5 | 2021-05-04T04:00:00Z | 2021-05-04T15:19:09Z | 0 | 0 | 0900006484acb1e5 | ||
| FAA-2021-0224-0003 | FAA | None FAA-2021-0224 | City of Westfield, Massachusetts - Answer and Supporting Evidentiary Material Volumes 1-3 (16-21-02) | Other | Answer | 2021-04-21T04:00:00Z | 2021 | 4 | 2021-04-21T04:00:00Z | 2021-04-21T18:34:07Z | 0 | 0 | 0900006484ab1c4e | ||
| FAA-2021-0224-0002 | FAA | None FAA-2021-0224 | U.S. DOT/FAA - Notice of Docketing (16-21-02) | Other | Adjudication Notice | 2021-03-17T04:00:00Z | 2021 | 3 | 2021-03-17T04:00:00Z | 2021-03-17T17:57:26Z | 0 | 0 | 0900006484a6e5fd | ||
| FAA-2021-0224-0001 | FAA | None FAA-2021-0224 | Joseph Occhiuzzo v. City of Westfield, Massachusetts - Complaint (16-21-02) | Other | Complaint | 2021-03-09T05:00:00Z | 2021 | 3 | 2021-03-09T05:00:00Z | 2021-03-09T15:15:32Z | 0 | 0 | 0900006484a64198 |
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;