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-0299" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOT-OST-2010-0299-0012 | DOT | None DOT-OST-2010-0299 | Application of Sichuan Airlines Co., Ltd. for Renewal of an Exemption | Other | Application-Other | 2016-08-18T04:00:00Z | 2016 | 8 | 2016-08-18T04:00:00Z | 2024-11-12T06:13:30Z | 1 | 0 | 0900006482181774 | ||
| DOT-OST-2010-0299-0011 | DOT | None DOT-OST-2010-0299 | Notice of Action Taken re: Sichuan Airlines Co., Ltd. | Other | Decision | 2015-08-21T04:00:00Z | 2015 | 8 | 2015-08-21T04:00:00Z | 2024-11-12T05:42:52Z | 1 | 0 | 0900006481c30b9c | ||
| DOT-OST-2010-0299-0010 | DOT | None DOT-OST-2010-0299 | Application of Sichuan Airlines Co., Ltd for Renewal of an Exemption | Other | Application | 2015-04-29T04:00:00Z | 2015 | 4 | 2015-04-29T04:00:00Z | 2015-04-29T15:11:03Z | 0 | 0 | 0900006481abd9b2 | ||
| DOT-OST-2010-0299-0009 | DOT | None DOT-OST-2010-0299 | Notice of Action Taken re: Sichuan Airlines Co., Ltd. | Other | Decision | 2014-05-01T04:00:00Z | 2014 | 5 | 2014-05-01T04:00:00Z | 2014-05-01T16:41:40Z | 0 | 0 | 09000064816dafaa | ||
| DOT-OST-2010-0299-0008 | DOT | None DOT-OST-2010-0299 | Application of Sichuan Airlines Co., Ltd. for Renewal of an Exemption | Other | Application-Other | 2014-01-27T05:00:00Z | 2014 | 1 | 2014-01-27T05:00:00Z | 2024-11-07T23:04:12Z | 1 | 0 | 090000648151d0ef | ||
| DOT-OST-2010-0299-0007 | DOT | None DOT-OST-2010-0299 | Notice of Action Taken re: Sichuan Airlines | Other | Decision | 2013-02-15T05:00:00Z | 2013 | 2 | 2013-02-15T05:00:00Z | 2024-11-07T22:47:55Z | 1 | 0 | 09000064811fabe9 | ||
| DOT-OST-2010-0299-0006 | DOT | None DOT-OST-2010-0299 | Application of Sichuan Airlines Co., Ltd. for Renewal of an Exemption | Other | Application-Other | 2013-01-23T05:00:00Z | 2013 | 1 | 2013-01-23T05:00:00Z | 2024-11-12T05:12:07Z | 1 | 0 | 09000064811b5e1f | ||
| DOT-OST-2010-0299-0005 | DOT | None DOT-OST-2010-0299 | Notice of Action Taken re: Sichuan Airlines Co., Inc. | Other | Decision | 2012-02-02T05:00:00Z | 2012 | 2 | 2012-02-02T05:00:00Z | 2024-11-12T04:29:43Z | 1 | 0 | 0900006480fac5eb | ||
| DOT-OST-2010-0299-0004 | DOT | None DOT-OST-2010-0299 | Application of Sichuan Airlines Co., Ltd. for Renewal of an Exemption | Other | Application-Other | 2012-01-12T05:00:00Z | 2012 | 1 | 2012-01-12T05:00:00Z | 2024-11-12T04:46:55Z | 1 | 0 | 0900006480f92049 | ||
| DOT-OST-2010-0299-0003 | DOT | None DOT-OST-2010-0299 | Notice of Action Taken re: Sichuan Airlines Co., Ltd. | Other | Notice | 2011-01-28T05:00:00Z | 2011 | 1 | 2011-01-28T05:00:00Z | 2011-01-28T14:38:22Z | 0 | 0 | 0900006480bd5032 | ||
| DOT-OST-2010-0299-0002 | DOT | None DOT-OST-2010-0299 | Sichuan Airlines Co., Ltd. | Other | Correspondence | 2010-12-28T05:00:00Z | 2010 | 12 | 2010-12-28T05:00:00Z | 2024-11-07T22:26:32Z | 1 | 0 | 0900006480bbe238 | ||
| DOT-OST-2010-0299-0001 | DOT | None DOT-OST-2010-0299 | Application of Sichuan Airlines Co., Ltd. for an Exemption | Other | Application-Other | 2010-12-22T05:00:00Z | 2010 | 12 | 2010-12-22T05:00:00Z | 2013-07-27T23:40:25Z | 0 | 0 | 0900006480bbe1e5 |
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;