documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2014-0400" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2014-0400-0011 | FAA | None FAA-2014-0400 | U.S. DOT/FAA - Request for Information to AeroCine, LLC | Other | Request | 2014-10-27T04:00:00Z | 2014 | 10 | 2014-10-27T04:00:00Z | 2014-10-27T14:31:33Z | 0 | 0 | 09000064818e4916 | ||
| FAA-2014-0400-0010 | FAA | None FAA-2014-0400 | AeroCine, LLC - Additional Information | Other | Additional Information | 2014-10-20T04:00:00Z | 2014 | 10 | 2014-10-20T04:00:00Z | 2014-10-20T15:29:57Z | 0 | 0 | 09000064818bfcf7 | ||
| FAA-2014-0400-0009 | FAA | None FAA-2014-0400 | AeroCine - Additional Information | Other | Additional Information | 2014-10-15T04:00:00Z | 2014 | 10 | 2014-10-15T04:00:00Z | 2014-10-15T17:27:47Z | 0 | 0 | 09000064818b178d | ||
| FAA-2014-0400-0008 | FAA | None FAA-2014-0400 | U.S. DOT/FAA - Letter | Other | Letter(s) | 2014-10-08T04:00:00Z | 2014 | 10 | 2014-10-08T04:00:00Z | 2014-10-08T16:56:22Z | 0 | 0 | 09000064818b1f20 | ||
| FAA-2014-0400-0006 | FAA | None FAA-2014-0400 | AeroCine, LLC - Change of Attorney | Other | Letter(s) | 2014-09-17T04:00:00Z | 2014 | 9 | 2014-09-17T04:00:00Z | 2014-09-17T13:32:34Z | 0 | 0 | 0900006481869eff | ||
| FAA-2014-0400-0007 | FAA | None FAA-2014-0400 | Esposito Partners, PLLC - Withdrawal of Counsel | Other | Withdrawal | 2014-09-17T04:00:00Z | 2014 | 9 | 2014-09-17T04:00:00Z | 2024-11-07T23:09:58Z | 1 | 0 | 090000648186ab22 | ||
| FAA-2014-0400-0002 | FAA | None FAA-2014-0400 | Petitions for Exemptions: Summary of Petition Received | Notice | Notice of Receipt of Petition | 2014-07-23T04:00:00Z | 2014 | 7 | 2014-07-23T04:00:00Z | 2014-08-13T03:59:59Z | 2024-11-12T05:27:52Z | 2014-17369 | 1 | 0 | 09000064817d7489 |
| FAA-2014-0400-0001 | FAA | None FAA-2014-0400 | AeroCine, LLC - Exemption/Rulemaking | Other | Petition(s) | 2014-06-18T04:00:00Z | 2014 | 6 | 2014-06-18T04:00:00Z | 2014-06-18T17:27:58Z | 0 | 0 | 090000648174ab68 |
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;