documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2017-0269" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_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-2017-0269-0009 | FAA | None FAA-2017-0269 | Decision | Other | Decision | 2018-03-16T04:00:00Z | 2018 | 3 | 2018-03-16T04:00:00Z | 2018-03-16T14:44:29Z | 0 | 0 | 0900006483019bbb | ||
| FAA-2017-0269-0008 | FAA | None FAA-2017-0269 | Petitions for Exemptions; Summaries | Notice | Notice of Receipt of Petition | 2018-01-22T05:00:00Z | 2018 | 1 | 2018-01-22T05:00:00Z | 2018-02-13T04:59:59Z | 2024-11-07T01:20:08Z | 2018-00985 | 1 | 0 | 0900006482e3ee50 |
| FAA-2017-0269-0007 | FAA | None FAA-2017-0269 | Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2018-01-04T05:00:00Z | 2018 | 1 | 2018-01-04T05:00:00Z | 2018-01-04T20:20:59Z | 0 | 0 | 0900006482d974bf | ||
| FAA-2017-0269-0006 | FAA | None FAA-2017-0269 | Gulfstream - Exemption/Rulemaking | Other | Petition(s) | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-20T05:00:00Z | 2024-11-07T01:16:17Z | 1 | 0 | 0900006482d3fa91 | ||
| FAA-2017-0269-0005 | FAA | None FAA-2017-0269 | U.S. DOT/FAA - Decision | Other | Decision | 2017-11-06T05:00:00Z | 2017 | 11 | 2017-11-06T05:00:00Z | 2017-11-06T20:02:15Z | 0 | 0 | 0900006482c4b55a | ||
| FAA-2017-0269-0004 | FAA | None FAA-2017-0269 | U.S. DOT/FAA - Acknowledgment Letter | Other | Acknowledgement Letter/Receipt | 2017-07-17T04:00:00Z | 2017 | 7 | 2017-07-17T04:00:00Z | 2017-07-17T13:57:36Z | 0 | 0 | 0900006482927a15 | ||
| FAA-2017-0269-0003 | FAA | None FAA-2017-0269 | Petitions for Exemptions; Summaries | Notice | Notice of Receipt of Petition | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T04:00:00Z | 2017-06-15T03:59:59Z | 2024-11-07T01:00:39Z | 2017-10692 | 1 | 0 | 0900006482610475 |
| FAA-2017-0269-0002 | FAA | None FAA-2017-0269 | U.S. DOT/FAA - Acknowledgment Letter | Other | Acknowledgement Letter/Receipt | 2017-04-10T04:00:00Z | 2017 | 4 | 2017-04-10T04:00:00Z | 2017-04-10T14:58:37Z | 0 | 0 | 090000648254457e | ||
| FAA-2017-0269-0001 | FAA | None FAA-2017-0269 | Gulfstream - Exemption/Rulemaking | Other | Petition(s) | 2017-03-27T04:00:00Z | 2017 | 3 | 2017-03-27T04:00:00Z | 2024-11-07T00:56:16Z | 1 | 0 | 0900006482526cbc |
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;