documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2013-0235" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2013-0235-0009 | FAA | None FAA-2013-0235 | U.S. DOT/FAA - Notice of Extenstion of Time Dated July 30, 2014 (16-12-14) | Other | Extension of Time | 2014-12-19T05:00:00Z | 2014 | 12 | 2014-12-19T05:00:00Z | 2014-12-19T19:01:57Z | 0 | 0 | 090000648196bfaf | ||
| FAA-2013-0235-0010 | FAA | None FAA-2013-0235 | U.S. DOT/FAA - Director's Determiniation (16-12-14) | Other | Directors Determination | 2014-12-19T05:00:00Z | 2014 | 12 | 2014-12-19T05:00:00Z | 2014-12-19T19:07:20Z | 0 | 0 | 090000648196bfad | ||
| FAA-2013-0235-0008 | FAA | None FAA-2013-0235 | U.S. DOT/FAA - Notice of Extension of Time (16-12-14) | Other | Extension of Time | 2014-08-04T04:00:00Z | 2014 | 8 | 2014-08-04T04:00:00Z | 2014-08-04T17:50:34Z | 0 | 0 | 090000648179a1cd | ||
| FAA-2013-0235-0007 | FAA | None FAA-2013-0235 | Scott Meyer v. City of Cincinnati, Ohio - Notice of Extension of Time (16-12-14) | Other | Extension of Time | 2014-04-14T04:00:00Z | 2014 | 4 | 2014-04-14T04:00:00Z | 2014-04-14T14:55:48Z | 0 | 0 | 0900006481695804 | ||
| FAA-2013-0235-0006 | FAA | None FAA-2013-0235 | U.S. DOT/FAA - Request for Additional Information (16-12-14) | Other | Request | 2014-02-18T05:00:00Z | 2014 | 2 | 2014-02-18T05:00:00Z | 2024-11-07T23:03:00Z | 1 | 0 | 0900006481549d5c | ||
| FAA-2013-0235-0005 | FAA | None FAA-2013-0235 | 16-12-14 Notice of Extension of Time dtd 7/3/2013 | Other | Extension of Time | 2013-08-06T04:00:00Z | 2013 | 8 | 2013-08-06T04:00:00Z | 2013-08-06T13:43:31Z | 0 | 0 | 09000064813876e2 | ||
| FAA-2013-0235-0004 | FAA | None FAA-2013-0235 | 16-12-14 Message between S. Meyer dtd 4/22/2013 | Other | Correspondence | 2013-05-01T04:00:00Z | 2013 | 5 | 2013-05-01T04:00:00Z | 2013-05-01T14:19:56Z | 0 | 0 | 09000064812a1a5d | ||
| FAA-2013-0235-0003 | FAA | None FAA-2013-0235 | 16-12-14 Rebuttal of Respondent dtd 2-19-2013 | Other | Rebuttal | 2013-03-11T04:00:00Z | 2013 | 3 | 2013-03-11T04:00:00Z | 2013-03-11T13:40:55Z | 0 | 0 | 0900006481204309 | ||
| FAA-2013-0235-0002 | FAA | None FAA-2013-0235 | 16-12-14 Amended Complaint (2 of 2) | Other | Complaint | 2013-03-07T05:00:00Z | 2013 | 3 | 2013-03-07T05:00:00Z | 2013-03-07T17:27:07Z | 0 | 0 | 09000064811f857a | ||
| FAA-2013-0235-0001 | FAA | None FAA-2013-0235 | 16-12-14 Amended Complaint (1 of 2) | Other | Complaint | 2013-03-05T05:00:00Z | 2013 | 3 | 2013-03-05T05:00:00Z | 2013-03-05T20:13:54Z | 0 | 0 | 09000064811f8578 |
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;