documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2010-0223" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOT-OST-2010-0223-0012 | DOT | None DOT-OST-2010-0223 | 2013-2-18 Order Cancelling Foreign Certificate | Other | Order | 2013-02-20T05:00:00Z | 2013 | 2 | 2013-02-20T05:00:00Z | 2024-11-07T22:47:19Z | 1 | 0 | 09000064811fedae | ||
| DOT-OST-2010-0223-0011 | DOT | None DOT-OST-2010-0223 | 2012-12-14 Order Canceling Certificate Authority | Other | Order | 2012-12-20T05:00:00Z | 2012 | 12 | 2012-12-20T05:00:00Z | 2024-11-12T05:10:09Z | 1 | 0 | 090000648119460c | ||
| DOT-OST-2010-0223-0010 | DOT | None DOT-OST-2010-0223 | 2011-7-14 Order Transferring Certificate Authority | Other | Order | 2011-07-28T04:00:00Z | 2011 | 7 | 2011-07-28T04:00:00Z | 2011-07-28T21:02:17Z | 0 | 0 | 0900006480eceb87 | ||
| DOT-OST-2010-0223-0009 | DOT | None DOT-OST-2010-0223 | ASTAR USA, LLC | Other | Correspondence | 2010-12-01T05:00:00Z | 2010 | 12 | 2010-12-01T05:00:00Z | 2013-07-27T23:38:32Z | 0 | 0 | 0900006480ba8b1c | ||
| DOT-OST-2010-0223-0008 | DOT | None DOT-OST-2010-0223 | New ASTAR Holdings, LLC | Other | Additional Information | 2010-11-18T05:00:00Z | 2010 | 11 | 2010-11-18T05:00:00Z | 2024-11-12T04:56:07Z | 1 | 0 | 0900006480b940c8 | ||
| DOT-OST-2010-0223-0007 | DOT | None DOT-OST-2010-0223 | 2010-11-19 Order (Corrected Copy) | Other | Order | 2010-11-17T05:00:00Z | 2010 | 11 | 2010-11-17T05:00:00Z | 2010-11-17T21:31:48Z | 0 | 0 | 0900006480b97550 | ||
| DOT-OST-2010-0223-0006 | DOT | None DOT-OST-2010-0223 | Application of ASTAR USA, LLC for Certificate Transfer and Pendent Lite Exemption | Other | Correspondence | 2010-11-02T04:00:00Z | 2010 | 11 | 2010-11-02T04:00:00Z | 2013-07-27T23:36:13Z | 0 | 0 | 0900006480b7d1d0 | ||
| DOT-OST-2010-0223-0005 | DOT | None DOT-OST-2010-0223 | ASTAR Air Cargo, Inc. and ASTAR USA, LLC | Other | Correspondence | 2010-10-19T04:00:00Z | 2010 | 10 | 2010-10-19T04:00:00Z | 2013-07-27T23:34:48Z | 0 | 0 | 0900006480b70254 | ||
| DOT-OST-2010-0223-0004 | DOT | None DOT-OST-2010-0223 | Motion of ASTAR Air Cargo, Inc. and ASTAR USA, LLC for Confidential Treatment Under Rule 12 | Other | Motion | 2010-09-09T04:00:00Z | 2010 | 9 | 2010-09-09T04:00:00Z | 2013-08-11T04:41:53Z | 0 | 0 | 0900006480b48af1 | ||
| DOT-OST-2010-0223-0003 | DOT | None DOT-OST-2010-0223 | Motion of ASTAR Air Cargo, Inc. and ASTAR USA, LLC for Confidential Treatment Under Rule 12 | Other | Motion | 2010-09-07T04:00:00Z | 2010 | 9 | 2010-09-07T04:00:00Z | 2013-07-27T23:30:06Z | 0 | 0 | 0900006480b44f2b | ||
| DOT-OST-2010-0223-0002 | DOT | None DOT-OST-2010-0223 | Joint Application of ASTAR Air Cargo, Inc. and ASTAR USA, LLC for Transfer of Certificate Authority | Other | Application-SubPartB | 2010-09-07T04:00:00Z | 2010 | 9 | 2010-09-07T04:00:00Z | 2013-08-11T04:41:52Z | 0 | 0 | 0900006480b4740e | ||
| DOT-OST-2010-0223-0001 | DOT | None DOT-OST-2010-0223 | Joint Application of ASTAR Air Cargo, Inc. and ASTAR USA, LLC for Transfer of Certificate Authority | Other | 2010-09-07T00:00:00Z | 2010 | 9 | 2013-07-27T23:30:06Z | 0 | 1 | 0900006480b44f2a |
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;