documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FAA-2009-0846" and posted_year = 2009 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-2009-0846-0008 | FAA | None FAA-2009-0846 | U.S. DOT/OST - Order Granting Motion for Continuance - CP09GL0007 | Other | Order | 2009-12-04T05:00:00Z | 2009 | 12 | 2009-12-04T05:00:00Z | 2013-07-27T23:01:24Z | 0 | 0 | 0900006480a627b2 | ||
| FAA-2009-0846-0007 | FAA | None FAA-2009-0846 | Midwest Helicopter Airways, Inc. - Motion for Continuance of Hearing | Other | Motion | 2009-12-03T05:00:00Z | 2009 | 12 | 2009-12-03T05:00:00Z | 2013-08-11T04:36:46Z | 0 | 0 | 0900006480a61bf5 | ||
| FAA-2009-0846-0005 | FAA | None FAA-2009-0846 | U.S. DOT/OST - Hearing Notice - CP09GL0007 | Other | Adjudication Notice | 2009-11-30T05:00:00Z | 2009 | 11 | 2009-11-30T05:00:00Z | 2013-07-27T23:00:53Z | 0 | 0 | 0900006480a5f33a | ||
| FAA-2009-0846-0006 | FAA | None FAA-2009-0846 | Hoff & Herran - Change of Firm Address - CP09GL0007 | Other | Other | 2009-11-30T05:00:00Z | 2009 | 11 | 2009-11-30T05:00:00Z | 2013-07-27T23:00:54Z | 0 | 0 | 0900006480a5f38f | ||
| FAA-2009-0846-0004 | FAA | None FAA-2009-0846 | Midwest Helicopter Airways, Inc. - Answer to Complaint - CP09GL0007 | Other | Answer | 2009-10-29T04:00:00Z | 2009 | 10 | 2009-10-29T04:00:00Z | 2013-07-27T22:58:18Z | 0 | 0 | 0900006480a4d4ab | ||
| FAA-2009-0846-0003 | FAA | None FAA-2009-0846 | U.S. DOT/OST - Procedural Order - CP09GL0007 | Other | Order | 2009-10-21T04:00:00Z | 2009 | 10 | 2009-10-21T04:00:00Z | 2013-07-27T22:57:30Z | 0 | 0 | 0900006480a46788 | ||
| FAA-2009-0846-0002 | FAA | None FAA-2009-0846 | U.S. DOT/OST - Notice Of Assignment Of Proceeding - CP09GL0007 | Notice | Notice | 2009-10-20T04:00:00Z | 2009 | 10 | 2009-10-20T04:00:00Z | 2013-07-27T22:57:17Z | 0 | 0 | 0900006480a43882 | ||
| FAA-2009-0846-0001 | FAA | None FAA-2009-0846 | U.S. DOT/FAA - Request for Hearing and Complaint - CP09GL0007 | Other | Request for Hearing and Complaint | 2009-10-05T04:00:00Z | 2009 | 10 | 2009-10-05T04:00:00Z | 2013-08-11T01:29:52Z | 0 | 0 | 0900006480a392b3 |
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;