documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FAA-2014-0116" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2014-0116-0010 | FAA | None FAA-2014-0116 | U.S. DOT/FAA - Complainant's Motion for Partial Decision (Summary Judgment) | Other | Motion | 2014-10-23T04:00:00Z | 2014 | 10 | 2014-10-23T04:00:00Z | 2014-10-23T18:35:05Z | 0 | 0 | 09000064818e9ebd | ||
| FAA-2014-0116-0009 | FAA | None FAA-2014-0116 | U.S. DOT/OST - Amended Procedural Order | Other | Order | 2014-10-14T04:00:00Z | 2014 | 10 | 2014-10-14T04:00:00Z | 2014-10-14T19:18:00Z | 0 | 0 | 09000064818bcf22 | ||
| FAA-2014-0116-0008 | FAA | None FAA-2014-0116 | Joseph Maridon, Sr. - Answer | Other | Answer | 2014-07-30T04:00:00Z | 2014 | 7 | 2014-07-30T04:00:00Z | 2014-07-30T14:44:31Z | 0 | 0 | 09000064817ea5ed | ||
| FAA-2014-0116-0007 | FAA | None FAA-2014-0116 | U.S. DOT/OST - Order on Respondent's Motion to Dismiss and Agency Request for Timely Filing | Other | Order | 2014-07-14T04:00:00Z | 2014 | 7 | 2014-07-14T04:00:00Z | 2014-07-14T14:19:57Z | 0 | 0 | 09000064817a3136 | ||
| FAA-2014-0116-0006 | FAA | None FAA-2014-0116 | Joseph Maridon - Respondents Reply to FAA's Opposition to Motion to Dismiss and Request to Find Opposition | Other | Reply | 2014-07-10T04:00:00Z | 2014 | 7 | 2014-07-10T04:00:00Z | 2014-07-10T14:29:22Z | 0 | 0 | 0900006481797963 | ||
| FAA-2014-0116-0005 | FAA | None FAA-2014-0116 | U.S. DOT/FAA - Complainant's Opposition to Motion to Dismiss and Request to Find Opposition Timely Filed | Other | Opposition | 2014-07-03T04:00:00Z | 2014 | 7 | 2014-07-03T04:00:00Z | 2014-07-03T14:43:57Z | 0 | 0 | 090000648177fd19 | ||
| FAA-2014-0116-0004 | FAA | None FAA-2014-0116 | Joseph R. Maridon, Sr. - Motion to Dismiss and Affidavit of Joseph R. Maridon, Sr. | Other | Motion | 2014-06-04T04:00:00Z | 2014 | 6 | 2014-06-04T04:00:00Z | 2014-06-11T19:39:57Z | 0 | 0 | 0900006481727189 | ||
| FAA-2014-0116-0003 | FAA | None FAA-2014-0116 | U.S. DOT/FAA - Procedural Order | Other | Order | 2014-05-12T04:00:00Z | 2014 | 5 | 2014-05-12T04:00:00Z | 2014-05-12T14:24:27Z | 0 | 0 | 09000064816ed46f | ||
| FAA-2014-0116-0002 | FAA | None FAA-2014-0116 | U.S. DOT/OST - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2014-05-09T04:00:00Z | 2014 | 5 | 2014-05-09T04:00:00Z | 2014-05-09T13:58:27Z | 0 | 0 | 09000064816e89fe | ||
| FAA-2014-0116-0001 | FAA | None FAA-2014-0116 | U.S. DOT/FAA - Request for Hearing and Complaint | Other | Complaint | 2014-05-06T04:00:00Z | 2014 | 5 | 2014-05-06T04:00:00Z | 2014-05-06T14:39:39Z | 0 | 0 | 09000064816e3212 |
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;