documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2015-1321" and posted_year = 2017 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-2015-1321-0046 | FAA | None FAA-2015-1321 | U.S. DOT?FAA - Withdrawal of Complaint | Other | Withdrawal | 2017-03-23T04:00:00Z | 2017 | 3 | 2017-03-23T04:00:00Z | 2017-03-23T14:49:12Z | 0 | 0 | 090000648251d264 | ||
| FAA-2015-1321-0045 | FAA | None FAA-2015-1321 | U.S. DOT/OST - Dismissal Order | Other | Order | 2017-03-17T04:00:00Z | 2017 | 3 | 2017-03-17T04:00:00Z | 2017-03-17T15:37:48Z | 0 | 0 | 090000648250ab40 | ||
| FAA-2015-1321-0044 | FAA | None FAA-2015-1321 | U.S. DOT/FAA - Amended Notice of Appearance | Other | Amendment | 2017-02-21T05:00:00Z | 2017 | 2 | 2017-02-21T05:00:00Z | 2017-02-21T21:04:32Z | 0 | 0 | 09000064824d06ef | ||
| FAA-2015-1321-0043 | FAA | None FAA-2015-1321 | Amended Brief in Support of Respondent's Interlocutory Appeal of Right | Other | Brief | 2017-02-08T05:00:00Z | 2017 | 2 | 2017-02-08T05:00:00Z | 2017-02-08T15:40:57Z | 0 | 0 | 09000064824b0e65 | ||
| FAA-2015-1321-0042 | FAA | None FAA-2015-1321 | Thermo Fisher Scientific, Inc.- Motions to Dismiss Complaint for Insufficiency and For Complaint's Violation of Rule 208 | Other | Motion | 2017-02-08T05:00:00Z | 2017 | 2 | 2017-02-08T05:00:00Z | 2017-02-08T15:40:12Z | 0 | 0 | 09000064824b11dc | ||
| FAA-2015-1321-0037 | FAA | None FAA-2015-1321 | Thermo Fisher Scientific, Inc. - Respondent's Report in Response to Order Issued June 2, 2016 to Provide Requested Information and Reply to Complainant's Response to Show-Cause Order Issued May 17, 2016 | Other | Response(s) | 2017-02-08T05:00:00Z | 2017 | 2 | 2017-02-08T05:00:00Z | 2017-02-08T15:26:19Z | 0 | 0 | 09000064824b0860 | ||
| FAA-2015-1321-0040 | FAA | None FAA-2015-1321 | Thermo Fisher Scientific, Inc. - Reply to FAA's Response to Motions to Dismiss Complaint | Other | Reply | 2017-02-08T05:00:00Z | 2017 | 2 | 2017-02-08T05:00:00Z | 2017-02-08T15:33:08Z | 0 | 0 | 09000064824b0867 | ||
| FAA-2015-1321-0038 | FAA | None FAA-2015-1321 | Memorandum and Exhibits in Support of Fisher Scientific Request For an Extension of Time to Respond To Order Signed May 17,2016 | Other | Memo | 2017-02-08T05:00:00Z | 2017 | 2 | 2017-02-08T05:00:00Z | 2017-02-08T15:28:28Z | 0 | 0 | 09000064824b0863 | ||
| FAA-2015-1321-0039 | FAA | None FAA-2015-1321 | Report of Fisher Scientific in Response to Order Served April 6, 2016, and Motion to Sanction FAA's Noncompliance | Other | Report | 2017-02-08T05:00:00Z | 2017 | 2 | 2017-02-08T05:00:00Z | 2017-02-08T15:32:14Z | 0 | 0 | 09000064824b0865 | ||
| FAA-2015-1321-0041 | FAA | None FAA-2015-1321 | U.S. DOT/OST - Order Extending Time for FAA to Respond to Respondent's Motion to Dismiss | Other | Order | 2017-02-08T05:00:00Z | 2017 | 2 | 2017-02-08T05:00:00Z | 2017-02-08T15:39:22Z | 0 | 0 | 09000064824b1193 | ||
| FAA-2015-1321-0036 | FAA | None FAA-2015-1321 | U.S. DOT/OST - Order Lifting Stay, Resuming the Proceedings, and Directing the Parties to Meet and Confer Regarding a Litigation Schedule | Other | Order | 2017-01-03T05:00:00Z | 2017 | 1 | 2017-01-03T05:00:00Z | 2017-01-03T18:41:41Z | 0 | 0 | 0900006482442408 |
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;