documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FAA-2008-1307" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, open_for_comment, withdrawn, 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-2008-1307-0012 | FAA | None FAA-2008-1307 | In The Matter of Aero Tire And Tank, LLC - Transcript - CP08SW0011 | Other | Transcript(s) | 2010-06-16T04:00:00Z | 2010 | 6 | 2010-06-16T04:00:00Z | 2013-08-11T04:40:24Z | 0 | 0 | 0900006480b02681 | ||
| FAA-2008-1307-0011 | FAA | None FAA-2008-1307 | U.S. DOT/OST - Order Of Dismissal - CP08SW0011 | Other | Order | 2010-05-25T04:00:00Z | 2010 | 5 | 2010-05-25T04:00:00Z | 2013-08-11T01:34:39Z | 0 | 0 | 0900006480af34a7 | ||
| FAA-2008-1307-0010 | FAA | None FAA-2008-1307 | U.S. DOT/OST - Order Of Dismissal - CP08SW0011 | Other | 2010-05-25T00:00:00Z | 2010 | 5 | 2013-08-11T03:08:40Z | 0 | 1 | 0900006480af2db6 | ||||
| FAA-2008-1307-0009 | FAA | None FAA-2008-1307 | U.S. DOT/OST - Notice of Hearing Dates - CP08SW0011 | Other | Adjudication Notice | 2010-03-05T05:00:00Z | 2010 | 3 | 2010-03-05T05:00:00Z | 2010-03-05T13:53:05Z | 0 | 0 | 0900006480ab23bb | ||
| FAA-2008-1307-0008 | FAA | None FAA-2008-1307 | U.S. DOT/OST - Amended Procedural Order - CP08SW0011 | Other | Order | 2010-02-26T05:00:00Z | 2010 | 2 | 2010-02-26T05:00:00Z | 2013-07-27T23:09:48Z | 0 | 0 | 0900006480aae29c | ||
| FAA-2008-1307-0007 | FAA | None FAA-2008-1307 | U.S. DOT/OST - Aero Tire and Tank, LLC - Order Granting Motion To Postpone Hearing - CP08SW0011 | Other | Order | 2009-12-03T05:00:00Z | 2009 | 12 | 2009-12-03T05:00:00Z | 2013-07-27T23:01:17Z | 0 | 0 | 0900006480a61cb2 | ||
| FAA-2008-1307-0006 | FAA | None FAA-2008-1307 | U.S. DOT/OST - Notice of Hearing Dates - CP08SW0011 | Other | Adjudication Notice | 2009-11-10T05:00:00Z | 2009 | 11 | 2009-11-10T05:00:00Z | 2024-11-07T22:11:07Z | 1 | 0 | 0900006480a533d4 | ||
| FAA-2008-1307-0005 | FAA | None FAA-2008-1307 | U.S. DOT/OST - Procedural Order - CP08SW0011 | Other | Order | 2009-01-29T05:00:00Z | 2009 | 1 | 2009-01-29T05:00:00Z | 2024-11-12T04:28:37Z | 1 | 0 | 09000064808348e0 | ||
| FAA-2008-1307-0004 | FAA | None FAA-2008-1307 | U.S. DOT/OST - Notice of Assignment of Proceeding - CP08SW0011 | Other | Adjudication Notice | 2009-01-22T05:00:00Z | 2009 | 1 | 2009-01-22T05:00:00Z | 2024-11-12T04:27:31Z | 1 | 0 | 0900006480828fb4 | ||
| FAA-2008-1307-0002 | FAA | None FAA-2008-1307 | U.S. DOT/FAA - Complaint - CP08SW0011 | Other | Complaint | 2008-12-23T05:00:00Z | 2008 | 12 | 2008-12-23T05:00:00Z | 2024-11-07T22:01:29Z | 1 | 0 | 09000064807e6bfd | ||
| FAA-2008-1307-0003 | FAA | None FAA-2008-1307 | Aero Tire and Tank, LLC - Answer - CP08SW0011 | Other | Answer | 2008-12-23T05:00:00Z | 2008 | 12 | 2008-12-23T05:00:00Z | 2024-11-07T22:02:25Z | 1 | 0 | 09000064807ee8b9 | ||
| FAA-2008-1307-0001 | FAA | None FAA-2008-1307 | Aero Tire and Tank, LLC - Complaint - CP08SW0011 | Other | 2008-12-22T00:00:00Z | 2008 | 12 | 2013-07-27T22:34:09Z | 0 | 1 | 09000064807e6d61 |
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;