documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FAA-2013-0716" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2013-0716-0008 | FAA | None FAA-2013-0716 | Tyler J. Pennywitt - Joint Proposed Scheduling/Discovery Plan | Other | Discovery | 2013-12-30T05:00:00Z | 2013 | 12 | 2013-12-30T05:00:00Z | 2013-12-30T18:43:48Z | 0 | 0 | 09000064814df178 | ||
| FAA-2013-0716-0009 | FAA | None FAA-2013-0716 | U.S. DOT/FAA - Supplemental Submission | Other | Additional Information | 2013-12-30T05:00:00Z | 2013 | 12 | 2013-12-30T05:00:00Z | 2013-12-30T18:46:23Z | 0 | 0 | 09000064814df17a | ||
| FAA-2013-0716-0007 | FAA | None FAA-2013-0716 | U.S. DOT/OST - Order Setting Litigation Dates and Procedures | Other | Order | 2013-12-17T05:00:00Z | 2013 | 12 | 2013-12-17T05:00:00Z | 2013-12-17T15:42:21Z | 0 | 0 | 09000064814c1e27 | ||
| FAA-2013-0716-0006 | FAA | None FAA-2013-0716 | Tyler Pennywitt - Answer (Response to Complaint) | Other | Answer | 2013-11-27T05:00:00Z | 2013 | 11 | 2013-11-27T05:00:00Z | 2013-11-27T20:02:49Z | 0 | 0 | 090000648149cd2c | ||
| FAA-2013-0716-0005 | FAA | None FAA-2013-0716 | Mitchell A. Stone - Request to be Removed as Attorney of Record | Other | Request | 2013-10-31T04:00:00Z | 2013 | 10 | 2013-10-31T04:00:00Z | 2013-10-31T18:41:59Z | 0 | 0 | 0900006481469e97 | ||
| FAA-2013-0716-0004 | FAA | None FAA-2013-0716 | U.S. DOT/FAA - Order Setting Rule 16 Litigation Scheduling Conference, And Directing Rule 26(f) Planning And Submission | Other | Order | 2013-10-23T04:00:00Z | 2013 | 10 | 2013-10-23T04:00:00Z | 2013-10-23T20:11:55Z | 0 | 0 | 09000064814592db | ||
| FAA-2013-0716-0003 | FAA | None FAA-2013-0716 | Tyler J. Pennywitt - Letter | Other | Letter(s) | 2013-10-02T04:00:00Z | 2013 | 10 | 2013-10-02T04:00:00Z | 2013-10-02T19:44:34Z | 0 | 0 | 09000064814426ad | ||
| FAA-2013-0716-0002 | FAA | None FAA-2013-0716 | U.S. DOT/OST - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2013-09-17T04:00:00Z | 2013 | 9 | 2013-09-17T04:00:00Z | 2013-09-17T15:46:39Z | 0 | 0 | 0900006481425544 | ||
| FAA-2013-0716-0001 | FAA | None FAA-2013-0716 | U.S. DOT/FAA - Complaint and Request for Hearing | Other | Complaint | 2013-09-11T04:00:00Z | 2013 | 9 | 2013-09-11T04:00:00Z | 2013-09-11T19:35:08Z | 0 | 0 | 09000064813f41c5 |
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;