documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2011-0294" and posted_year = 2011 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-2011-0294-0012 | FAA | None FAA-2011-0294 | U.S. DOT/FAA - Opposition to Respondent's Motion to Continue Hearing | Other | Opposition | 2011-08-19T04:00:00Z | 2011 | 8 | 2011-08-19T04:00:00Z | 2011-08-19T13:46:02Z | 0 | 0 | 0900006480ee45f0 | ||
| FAA-2011-0294-0011 | FAA | None FAA-2011-0294 | Frostad Atelier Inc. - Respondent's Motion to Continue Hearing; Declaration of David W. Williams in Support Thereof | Other | Motion | 2011-08-18T04:00:00Z | 2011 | 8 | 2011-08-18T04:00:00Z | 2011-08-18T20:33:46Z | 0 | 0 | 0900006480ee45ef | ||
| FAA-2011-0294-0010 | FAA | None FAA-2011-0294 | U.S. DOT/OST - Order Granting Motion To Continue Hearing | Other | Order | 2011-08-11T04:00:00Z | 2011 | 8 | 2011-08-11T04:00:00Z | 2011-08-11T14:54:00Z | 0 | 0 | 0900006480edca5d | ||
| FAA-2011-0294-0008 | FAA | None FAA-2011-0294 | U.S.DOT/FAA - Errata To Complaint | Other | Erratum | 2011-07-26T04:00:00Z | 2011 | 7 | 2011-07-26T04:00:00Z | 2011-07-26T18:57:43Z | 0 | 0 | 0900006480ecc44e | ||
| FAA-2011-0294-0009 | FAA | None FAA-2011-0294 | Frostad Atelier, Inc. - Answer to Complaint | Other | Answer | 2011-07-26T04:00:00Z | 2011 | 7 | 2011-07-26T04:00:00Z | 2011-07-26T19:13:09Z | 0 | 0 | 0900006480ecc0bc | ||
| FAA-2011-0294-0006 | FAA | None FAA-2011-0294 | U.S.DOT/FAA - Motion to Deem Allegations Admitted | Other | Motion | 2011-07-18T04:00:00Z | 2011 | 7 | 2011-07-18T04:00:00Z | 2011-07-18T17:52:32Z | 0 | 0 | 0900006480ec4a8f | ||
| FAA-2011-0294-0007 | FAA | None FAA-2011-0294 | Frostad Atelier Inc. - Respondent's Objection to Motion to Deem Allegations Admitted | Other | Objection(s) | 2011-07-18T04:00:00Z | 2011 | 7 | 2011-07-18T04:00:00Z | 2011-07-18T16:30:56Z | 0 | 0 | 0900006480ec4ab6 | ||
| FAA-2011-0294-0005 | FAA | None FAA-2011-0294 | U.S.DOT/OST - Order Directing Filing Of Answer | Other | Order | 2011-07-13T04:00:00Z | 2011 | 7 | 2011-07-13T04:00:00Z | 2011-07-13T20:05:27Z | 0 | 0 | 0900006480ec080b | ||
| FAA-2011-0294-0004 | FAA | None FAA-2011-0294 | U.S. DOT/OST - Hearing Notice and Amended Procedural Order | Other | Hearing/Meeting Transcript | 2011-06-15T04:00:00Z | 2011 | 6 | 2011-06-15T04:00:00Z | 2011-06-22T18:18:24Z | 0 | 0 | 0900006480e455e0 | ||
| FAA-2011-0294-0003 | FAA | None FAA-2011-0294 | U.S. DOT/OST - Procedural Order | Other | Order | 2011-05-26T04:00:00Z | 2011 | 5 | 2011-05-26T04:00:00Z | 2013-08-11T04:46:01Z | 0 | 0 | 0900006480e325ac | ||
| FAA-2011-0294-0002 | FAA | None FAA-2011-0294 | U.S. DOT/OST - Notice Of Assignment Of Proceeding - | Other | Other | 2011-05-18T04:00:00Z | 2011 | 5 | 2011-05-18T04:00:00Z | 2013-08-11T03:14:51Z | 0 | 0 | 0900006480d039c9 | ||
| FAA-2011-0294-0001 | FAA | None FAA-2011-0294 | U.S. DOT/FAA - Request for Hearing and Complaint | Other | Complaint | 2011-05-09T04:00:00Z | 2011 | 5 | 2011-05-09T04:00:00Z | 2013-08-11T01:41:24Z | 0 | 0 | 0900006480c3d764 |
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;