documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2015-1321" and posted_year = 2015 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-0012 | FAA | None FAA-2015-1321 | U.S. DOT/FAA - Complaint | Other | Complaint | 2015-11-18T05:00:00Z | 2015 | 11 | 2015-11-18T05:00:00Z | 2015-11-18T16:00:02Z | 0 | 0 | 0900006481d55bbf | ||
| FAA-2015-1321-0011 | FAA | None FAA-2015-1321 | U.S. DOT/FAA -Response to Respondent's Motion to Dismiss Complaint for Insufficiency and for Complainant's Violation of Rule 208 | Other | Response(s) | 2015-08-26T04:00:00Z | 2015 | 8 | 2015-08-26T04:00:00Z | 2015-08-26T18:59:26Z | 0 | 0 | 0900006481c3b1cc | ||
| FAA-2015-1321-0010 | FAA | None FAA-2015-1321 | Fisher Scientific, Inc. - Opposition to Complainant's Motion for Extension | Other | Opposition | 2015-08-18T04:00:00Z | 2015 | 8 | 2015-08-18T04:00:00Z | 2015-08-18T14:29:48Z | 0 | 0 | 0900006481c24885 | ||
| FAA-2015-1321-0009 | FAA | None FAA-2015-1321 | U.S. DOT/FAA - Motion for Extension to File Response to Fisher Scientific LLC's Motion to Dismiss Complaint for Insufficiency and for Complainant's Violation of Rule 208 | Other | Motion | 2015-08-18T04:00:00Z | 2015 | 8 | 2015-08-18T04:00:00Z | 2015-08-18T14:26:21Z | 0 | 0 | 0900006481c24ebc | ||
| FAA-2015-1321-0008 | FAA | None FAA-2015-1321 | U.S. DOT/OST - Order Extending Time for FAA to Respond to Respondent's Motion to Dismiss | Other | Order | 2015-07-16T04:00:00Z | 2015 | 7 | 2015-07-16T04:00:00Z | 2015-07-16T14:24:56Z | 0 | 0 | 0900006481b87e2d | ||
| FAA-2015-1321-0005 | FAA | None FAA-2015-1321 | Fisher Scientific Company, LLC - Motions to Dismiss Complaint for Insufficieny and for Complainant's Violation of Rule 208 | Other | Motion | 2015-06-30T04:00:00Z | 2015 | 6 | 2015-06-30T04:00:00Z | 2015-06-30T13:13:38Z | 0 | 0 | 0900006481b57cc6 | ||
| FAA-2015-1321-0006 | FAA | None FAA-2015-1321 | Fisher Scientific Company, LLC - Memorandum in Support of Motions to Dismiss Complaint for Insufficieny and for Complainant's Violation of Rule 208 | Other | Memorandum in Support | 2015-06-30T04:00:00Z | 2015 | 6 | 2015-06-30T04:00:00Z | 2015-06-30T13:15:55Z | 0 | 0 | 0900006481b57fc9 | ||
| FAA-2015-1321-0007 | FAA | None FAA-2015-1321 | Fisher Scientific Company, LLC - Request to Correct Service List | Other | Request for Correction of Information | 2015-06-30T04:00:00Z | 2015 | 6 | 2015-06-30T04:00:00Z | 2015-06-30T13:17:58Z | 0 | 0 | 0900006481b57cc8 | ||
| FAA-2015-1321-0003 | FAA | None FAA-2015-1321 | Thermo Fisher Scientific, Inc. - Notice of Apperance | Other | Adjudication Notice | 2015-06-19T04:00:00Z | 2015 | 6 | 2015-06-19T04:00:00Z | 2015-06-19T14:13:00Z | 0 | 0 | 0900006481b433ff | ||
| FAA-2015-1321-0004 | FAA | None FAA-2015-1321 | U.S. DOT/FAA - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2015-06-19T04:00:00Z | 2015 | 6 | 2015-06-19T04:00:00Z | 2015-06-19T14:19:23Z | 0 | 0 | 0900006481b373e0 | ||
| FAA-2015-1321-0002 | FAA | None FAA-2015-1321 | Thermo Fisher Scientific, Inc. - Notice of Appearance | Other | Appearance Request | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T04:00:00Z | 2015-06-10T14:02:56Z | 0 | 0 | 0900006481b26213 | ||
| FAA-2015-1321-0001 | FAA | None FAA-2015-1321 | Thermo Fisher Scientific, Inc. - Request for Hearing | Other | Request | 2015-06-10T04:00:00Z | 2015 | 6 | 2015-06-10T04:00:00Z | 2015-06-10T13:51:38Z | 0 | 0 | 0900006481b26211 |
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;