documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2016-3830" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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-2016-3830-0046 | FAA | None FAA-2016-3830 | U.S. DOT/FAA - Notice of Extension of Time Dated December 22, 2021 (16-16-02) | Other | Extension of Time | 2021-12-30T05:00:00Z | 2021 | 12 | 2021-12-30T05:00:00Z | 2021-12-30T14:39:11Z | 0 | 0 | 0900006484f01115 | ||
| FAA-2016-3830-0045 | FAA | None FAA-2016-3830 | U.S. DOT/FAA - Notice of Extension of Time Dated November 3, 2021 (16-16-02) | Other | Extension of Time | 2021-11-04T04:00:00Z | 2021 | 11 | 2021-11-04T04:00:00Z | 2021-11-04T15:10:47Z | 0 | 0 | 0900006484e1b570 | ||
| FAA-2016-3830-0044 | FAA | None FAA-2016-3830 | U.S. DOT/FAA - Notice for Extension of Time (16-16-02) | Other | Extension of Time | 2021-09-16T04:00:00Z | 2021 | 9 | 2021-09-16T04:00:00Z | 2021-09-16T19:23:39Z | 0 | 0 | 0900006484d87a11 | ||
| FAA-2016-3830-0043 | FAA | None FAA-2016-3830 | U.S. DOT/FAA - Notice for Extension of Time (16-16-02) | Other | Extension of Time | 2021-07-09T04:00:00Z | 2021 | 7 | 2021-07-09T04:00:00Z | 2021-07-09T18:04:29Z | 0 | 0 | 0900006484be0404 | ||
| FAA-2016-3830-0042 | FAA | None FAA-2016-3830 | U.S. DOT/FAA - Notice for Extension of Time (16-16-02) | Other | Extension of Time | 2021-05-12T04:00:00Z | 2021 | 5 | 2021-05-12T04:00:00Z | 2021-05-12T19:38:38Z | 0 | 0 | 0900006484af3db7 | ||
| FAA-2016-3830-0041 | FAA | None FAA-2016-3830 | U.S. DOT/FAA - Order for Extension of Time (16-16-02) | Other | Order | 2021-03-09T05:00:00Z | 2021 | 3 | 2021-03-09T05:00:00Z | 2021-03-09T15:45:00Z | 0 | 0 | 0900006484a641ff | ||
| FAA-2016-3830-0040 | FAA | None FAA-2016-3830 | U.S. DOT/FAA - Order for Extension of Time (16-16-02) | Other | Order | 2021-02-09T05:00:00Z | 2021 | 2 | 2021-02-09T05:00:00Z | 2021-02-22T15:20:49Z | 0 | 0 | 0900006484a227c2 | ||
| FAA-2016-3830-0039 | FAA | None FAA-2016-3830 | KMAZuckert LLC - Notice of Email Address Change (16-16-02) | Other | Correspondence | 2021-01-27T05:00:00Z | 2021 | 1 | 2021-01-27T05:00:00Z | 2021-02-22T15:18:11Z | 0 | 0 | 0900006484a08689 |
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;