documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2011-0488" and posted_year = 2012 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-0488-0013 | FAA | None FAA-2011-0488 | U.S. DOT/OST - Order Denying Summary Judgment, Granting Joint Motion for Decision on the Written Record, and Granting/Denying Other Relief | Other | Order | 2012-12-17T05:00:00Z | 2012 | 12 | 2012-12-17T05:00:00Z | 2012-12-17T17:41:33Z | 0 | 0 | 090000648118d008 | ||
| FAA-2011-0488-0012 | FAA | None FAA-2011-0488 | Nouveau Laboratories, LLC d/b/a Covermark USA - Response to Interrogatory 5 | Other | Response(s) | 2012-09-25T04:00:00Z | 2012 | 9 | 2012-09-25T04:00:00Z | 2012-09-25T15:27:57Z | 0 | 0 | 0900006481126ea5 | ||
| FAA-2011-0488-0011 | FAA | None FAA-2011-0488 | U.S. DOT/FAA - Transcript | Other | Transcript(s) | 2012-06-27T04:00:00Z | 2012 | 6 | 2012-06-27T04:00:00Z | 2012-06-27T19:58:42Z | 0 | 0 | 090000648106b826 | ||
| FAA-2011-0488-0010 | FAA | None FAA-2011-0488 | Nouveau Laboratories dba Covermark USA - Request for Admissions | Other | Request | 2012-06-25T04:00:00Z | 2012 | 6 | 2012-06-25T04:00:00Z | 2012-06-25T15:41:52Z | 0 | 0 | 0900006481060326 | ||
| FAA-2011-0488-0009 | FAA | None FAA-2011-0488 | U.S. DOT/FAA - Complainant's Proposed Procedural Schedule | Other | Proposal(s) | 2012-06-13T04:00:00Z | 2012 | 6 | 2012-06-13T04:00:00Z | 2012-06-13T13:55:44Z | 0 | 0 | 090000648103d1a6 | ||
| FAA-2011-0488-0008 | FAA | None FAA-2011-0488 | U.S. DOT/OST - Order Setting Litigation Dates and Procedures | Other | Order | 2012-06-01T04:00:00Z | 2012 | 6 | 2012-06-01T04:00:00Z | 2012-06-01T20:48:50Z | 0 | 0 | 0900006481025278 | ||
| FAA-2011-0488-0006 | FAA | None FAA-2011-0488 | U.S. DOT/OST - Order Deeming Allegations of Safety Violation Admitted and Granting/Denying Other Relief | Other | Order | 2012-04-04T04:00:00Z | 2012 | 4 | 2012-04-04T04:00:00Z | 2012-04-04T14:33:25Z | 0 | 0 | 0900006480fe6dfe | ||
| FAA-2011-0488-0007 | FAA | None FAA-2011-0488 | U.S. DOT/OST - Order Setting Rule 16 Litigation Scheduling Conference, and Directing Rule 26(f) Planning and Submission | Other | Order | 2012-04-04T04:00:00Z | 2012 | 4 | 2012-04-04T04:00:00Z | 2012-04-04T14:48:47Z | 0 | 0 | 0900006480fe7b31 | ||
| FAA-2011-0488-0004 | FAA | None FAA-2011-0488 | U.S. DOT/FAA - Complainant's Motion to Deem Allegations Admitted and Motion for Hearing on Sanction Only | Other | Motion | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-02-27T05:00:00Z | 2012-02-27T15:40:44Z | 0 | 0 | 0900006480fc38d2 | ||
| FAA-2011-0488-0005 | FAA | None FAA-2011-0488 | Notice of Assignment of Proceeding Under Other FDMS Docket and Order of Chief Administrative Law Judge Closing This Docket | Other | Decision | 2012-02-27T05:00:00Z | 2012 | 2 | 2012-02-27T05:00:00Z | 2012-02-27T16:13:52Z | 0 | 0 | 0900006480fc0a14 | ||
| FAA-2011-0488-0003 | FAA | None FAA-2011-0488 | U.S. DOT/OST - Notice of Assignment of Proceeding | Other | Adjudication Notice | 2012-02-24T05:00:00Z | 2012 | 2 | 2012-02-24T05:00:00Z | 2012-02-24T14:41:37Z | 0 | 0 | 0900006480fbefb8 |
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;