documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2011-1009" 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, open_for_comment, 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-1009-0018 | FAA | None FAA-2011-1009 | U.S. DOT/FAA - Teleconference Hearing | Other | Hearing/Meeting Transcript | 2012-05-16T04:00:00Z | 2012 | 5 | 2012-05-16T04:00:00Z | 2012-05-17T14:28:19Z | 0 | 0 | 090000648100e2b5 | ||
| FAA-2011-1009-0017 | FAA | None FAA-2011-1009 | U.S. DOT/OST - Order Granting Default Judgment And Assessing Civil Penalty | Other | Order | 2012-05-04T04:00:00Z | 2012 | 5 | 2012-05-04T04:00:00Z | 2012-05-04T16:32:05Z | 0 | 0 | 0900006481004622 | ||
| FAA-2011-1009-0016 | FAA | None FAA-2011-1009 | U.S. DOT/OST - Order Setting Telephone Conference | Other | Order | 2012-04-23T04:00:00Z | 2012 | 4 | 2012-04-23T04:00:00Z | 2012-04-23T19:40:33Z | 0 | 0 | 0900006480ff486c | ||
| FAA-2011-1009-0015 | FAA | None FAA-2011-1009 | U.S. DOT/FAA - Complainant's Amended Motion for Default Judgment | Other | Motion | 2012-04-19T04:00:00Z | 2012 | 4 | 2012-04-19T04:00:00Z | 2012-04-19T20:40:06Z | 0 | 0 | 0900006480ff1a4f | ||
| FAA-2011-1009-0014 | FAA | None FAA-2011-1009 | U.S. DOT/FAA - Transcript | Other | Transcript(s) | 2012-04-16T04:00:00Z | 2012 | 4 | 2012-04-16T04:00:00Z | 2012-04-16T16:12:35Z | 0 | 0 | 0900006480fefb6c | ||
| FAA-2011-1009-0013 | FAA | None FAA-2011-1009 | U.S. DOT/FAA - Complainant's Motion for Default Judgment | Other | Motion | 2012-03-14T04:00:00Z | 2012 | 3 | 2012-03-14T04:00:00Z | 2024-11-07T22:06:46Z | 1 | 0 | 0900006480fd6492 | ||
| FAA-2011-1009-0012 | FAA | None FAA-2011-1009 | U.S. DOT/FAA - Notice of Proposed Motion to Resolve Case | Other | Adjudication Notice | 2012-03-14T04:00:00Z | 2012 | 3 | 2012-03-14T04:00:00Z | 2024-11-12T04:36:09Z | 1 | 0 | 0900006480fd6490 | ||
| FAA-2011-1009-0011 | FAA | None FAA-2011-1009 | U.S. DOT/OST - Order Granting Motion to Deem Allegations Admitted and Granting Other Relief | Other | Order | 2012-02-03T05:00:00Z | 2012 | 2 | 2012-02-03T05:00:00Z | 2012-02-03T20:10:11Z | 0 | 0 | 0900006480fad1de | ||
| FAA-2011-1009-0010 | FAA | None FAA-2011-1009 | U.S. DOT/FAA - Transcript of Proceedings | Other | Transcript(s) | 2012-01-30T05:00:00Z | 2012 | 1 | 2012-01-30T05:00:00Z | 2012-01-30T21:34:50Z | 0 | 0 | 0900006480fa922b | ||
| FAA-2011-1009-0009 | FAA | None FAA-2011-1009 | U.S. DOT/FAA - Complainant's Motion to Allegations Admitted | Other | Motion | 2012-01-26T05:00:00Z | 2012 | 1 | 2012-01-26T05:00:00Z | 2012-01-26T17:47:42Z | 0 | 0 | 0900006480fa5964 | ||
| FAA-2011-1009-0008 | FAA | None FAA-2011-1009 | U.S. DOT/OST - Order to Show Cause Why Motion to Deem Allegations Admitted Should Not Be Granted | Other | Order | 2012-01-13T05:00:00Z | 2012 | 1 | 2012-01-13T05:00:00Z | 2012-01-24T15:23:52Z | 0 | 0 | 0900006480f96008 |
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;