documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FAA-2009-1045" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2009-1045-0012 | FAA | None FAA-2009-1045 | U.S. DOT/OST - Hearing Notice - CP09SO0014 | Other | Other | 2010-10-19T04:00:00Z | 2010 | 10 | 2010-10-19T04:00:00Z | 2013-07-27T23:34:53Z | 0 | 0 | 0900006480b71af5 | ||
| FAA-2009-1045-0011 | FAA | None FAA-2009-1045 | U.S. DOT/OST - Amended Procedural Order - CP09SO0014 | Other | Order | 2010-08-18T04:00:00Z | 2010 | 8 | 2010-08-18T04:00:00Z | 2013-08-11T01:36:33Z | 0 | 0 | 0900006480b32ca4 | ||
| FAA-2009-1045-0010 | FAA | None FAA-2009-1045 | Texas Army National Guard - Respondent's Answer to Complainant's Motion for Decision - CP09SO0014 | Other | Response(s) | 2010-07-15T04:00:00Z | 2010 | 7 | 2010-07-15T04:00:00Z | 2013-07-27T23:24:59Z | 0 | 0 | 0900006480b1a01e | ||
| FAA-2009-1045-0009 | FAA | None FAA-2009-1045 | U.S. DOT/OST - Order Granting In Part And Denying In Part Motion For Decision - CP09SO0014 | Other | Order | 2010-07-12T04:00:00Z | 2010 | 7 | 2010-07-12T04:00:00Z | 2013-07-27T23:24:38Z | 0 | 0 | 0900006480b162a7 | ||
| FAA-2009-1045-0008 | FAA | None FAA-2009-1045 | U.S. DOT/FAA - Complainant's Motion for Decision - CP09SO0014 | Other | Motion | 2010-06-28T04:00:00Z | 2010 | 6 | 2010-06-28T04:00:00Z | 2013-08-11T01:35:36Z | 0 | 0 | 0900006480b0a990 | ||
| FAA-2009-1045-0007 | FAA | None FAA-2009-1045 | U.S. DOT/FAA - Complainant's Motion For Decision - CP09SO0014 | Other | Motion | 2010-06-23T04:00:00Z | 2010 | 6 | 2010-06-23T04:00:00Z | 2013-08-11T03:09:14Z | 0 | 0 | 0900006480b08b37 | ||
| FAA-2009-1045-0006 | FAA | None FAA-2009-1045 | U.S. DOT/OST - Amended Procedural Order - CP09SO0014 | Other | Order | 2010-06-07T04:00:00Z | 2010 | 6 | 2010-06-07T04:00:00Z | 2013-08-11T04:40:12Z | 0 | 0 | 0900006480afb1e6 | ||
| FAA-2009-1045-0005 | FAA | None FAA-2009-1045 | U.S. DOT/FAA - Amendment to Complaint - CP09SO0014 | Other | Amendment | 2010-04-30T04:00:00Z | 2010 | 4 | 2010-04-30T04:00:00Z | 2010-04-30T14:56:48Z | 0 | 0 | 0900006480ae428f | ||
| FAA-2009-1045-0004 | FAA | None FAA-2009-1045 | U.S. DOT/OST - Procedural Order - CP09SO0014 | Other | Order | 2010-01-13T05:00:00Z | 2010 | 1 | 2010-01-13T05:00:00Z | 2013-07-27T23:04:11Z | 0 | 0 | 0900006480a7bbbd | ||
| FAA-2009-1045-0002 | FAA | None FAA-2009-1045 | U.S. DOT/OST - Notice of Assignment of Proceeding - CP09SO0014 | Other | Adjudication Notice | 2010-01-08T05:00:00Z | 2010 | 1 | 2010-01-08T05:00:00Z | 2013-07-27T23:03:49Z | 0 | 0 | 0900006480a78e27 | ||
| FAA-2009-1045-0003 | FAA | None FAA-2009-1045 | Executive Office of the States of Texas - Original Answer and Affirmative Defenses - CP09SO0014 | Other | Answer | 2010-01-08T05:00:00Z | 2010 | 1 | 2010-01-08T05:00:00Z | 2013-07-27T23:03:52Z | 0 | 0 | 0900006480a792b9 |
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;