documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2013-0319" 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, open_for_comment, 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-0319-0012 | FAA | None FAA-2013-0319 | 16-13-02 Rebuttal and Reply in Support of Boards Motion to Dismiss | Other | Rebuttal | 2013-08-06T04:00:00Z | 2013 | 8 | 2013-08-06T04:00:00Z | 2013-08-06T14:17:02Z | 0 | 0 | 09000064813876fe | ||
| FAA-2013-0319-0011 | FAA | None FAA-2013-0319 | 16-13-02 Complainants Memo Opposing Dismissal | Other | Memo | 2013-08-06T04:00:00Z | 2013 | 8 | 2013-08-06T04:00:00Z | 2013-08-06T14:09:39Z | 0 | 0 | 090000648138772c | ||
| FAA-2013-0319-0009 | FAA | None FAA-2013-0319 | 16-13-02 FAA Letter dtd 6/7/2013 | Other | Letter(s) | 2013-06-18T04:00:00Z | 2013 | 6 | 2013-06-18T04:00:00Z | 2013-06-18T20:24:32Z | 0 | 0 | 0900006481326f1c | ||
| FAA-2013-0319-0010 | FAA | None FAA-2013-0319 | 16-13-02 Joint Application to Establish Schedule dtd 6/5/2013 | Other | Application | 2013-06-18T04:00:00Z | 2013 | 6 | 2013-06-18T04:00:00Z | 2013-06-18T20:35:35Z | 0 | 0 | 0900006481326f1e | ||
| FAA-2013-0319-0005 | FAA | None FAA-2013-0319 | 16-13-02 FAA Letter dtd 5/30/2013 | Other | Letter(s) | 2013-06-18T04:00:00Z | 2013 | 6 | 2013-06-18T04:00:00Z | 2013-06-18T17:58:04Z | 0 | 0 | 0900006481326ed8 | ||
| FAA-2013-0319-0004 | FAA | None FAA-2013-0319 | 16-13-02 Somerset Airport Board Meeting to Dismiss & Answer | Other | Hearing/Meeting Summary | 2013-06-18T04:00:00Z | 2013 | 6 | 2013-06-18T04:00:00Z | 2013-06-18T16:50:12Z | 0 | 0 | 0900006481326ed4 | ||
| FAA-2013-0319-0006 | FAA | None FAA-2013-0319 | 16-13-02 Somerset Airport Board Supporting Memo | Other | Memo | 2013-06-18T04:00:00Z | 2013 | 6 | 2013-06-18T04:00:00Z | 2024-11-12T05:19:44Z | 1 | 0 | 0900006481326ee2 | ||
| FAA-2013-0319-0008 | FAA | None FAA-2013-0319 | 16-13-02 Somerset Supporting Memo - Exhibit I - N-001 | Other | Exhibit(s) | 2013-06-18T04:00:00Z | 2013 | 6 | 2013-06-18T04:00:00Z | 2013-06-18T20:19:18Z | 0 | 0 | 0900006481326ef6 | ||
| FAA-2013-0319-0007 | FAA | None FAA-2013-0319 | 16-13-02 Supporting Memo - Somerset Exhibit A - H-001 | Other | Exhibit(s) | 2013-06-18T04:00:00Z | 2013 | 6 | 2013-06-18T04:00:00Z | 2013-06-18T20:18:54Z | 0 | 0 | 0900006481326f06 | ||
| FAA-2013-0319-0003 | FAA | None FAA-2013-0319 | 16-13-02 Agreed Motion for Additional Time to Respond to Complaint | Other | Extension of Time | 2013-05-08T04:00:00Z | 2013 | 5 | 2013-05-08T04:00:00Z | 2013-05-08T19:27:34Z | 0 | 0 | 09000064812bbd86 | ||
| FAA-2013-0319-0002 | FAA | None FAA-2013-0319 | 16-13-02 Docketing Notice | Other | Agency Response | 2013-05-03T04:00:00Z | 2013 | 5 | 2013-05-03T04:00:00Z | 2013-05-03T18:43:52Z | 0 | 0 | 09000064812a1c60 | ||
| FAA-2013-0319-0001 | FAA | None FAA-2013-0319 | 16-13-02 SPA Rentals, LLC DBA MSI Aviation v. Somerset - Pulaski County Airport Board - Second Complaint (See Attachments) | Other | Complaint | 2013-04-04T04:00:00Z | 2013 | 4 | 2013-04-04T04:00:00Z | 2013-04-04T13:32:58Z | 0 | 0 | 090000648124c2b2 |
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;