documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2015-0269" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOT-OST-2015-0269-0010 | DOT | None DOT-OST-2015-0269 | Application for Renewal of Exemption | Other | Application-Other | 2024-08-01T04:00:00Z | 2024 | 8 | 2024-08-01T04:00:00Z | 2024-11-12T22:39:27Z | 1 | 0 | 0900006486612eb5 | ||
| DOT-OST-2015-0269-0009 | DOT | None DOT-OST-2015-0269 | Notice of Action Taken re: LATAM Cargo Chile | Other | Decision | 2022-08-30T04:00:00Z | 2022 | 8 | 2022-08-30T04:00:00Z | 2024-11-12T23:44:59Z | 1 | 0 | 0900006485290f28 | ||
| DOT-OST-2015-0269-0008 | DOT | None DOT-OST-2015-0269 | Application for Renewal of Exemption | Other | Application-Other | 2022-07-18T04:00:00Z | 2022 | 7 | 2022-07-18T04:00:00Z | 2024-11-07T00:41:07Z | 1 | 0 | 09000064851d00ea | ||
| DOT-OST-2015-0269-0007 | DOT | None DOT-OST-2015-0269 | Notice of Action Taken re: LATAM Cargo Chile | Other | Decision | 2020-08-06T04:00:00Z | 2020 | 8 | 2020-08-06T04:00:00Z | 2024-11-12T23:23:51Z | 1 | 0 | 09000064847e0ee8 | ||
| DOT-OST-2015-0269-0006 | DOT | None DOT-OST-2015-0269 | Application for Renewal of Exemption | Other | Application-Other | 2020-06-23T04:00:00Z | 2020 | 6 | 2020-06-23T04:00:00Z | 2024-11-06T23:37:11Z | 1 | 0 | 09000064846ff420 | ||
| DOT-OST-2015-0269-0005 | DOT | None DOT-OST-2015-0269 | Notice of Action Taken re: LATAM Cargo Chile | Other | Decision | 2018-07-18T04:00:00Z | 2018 | 7 | 2018-07-18T04:00:00Z | 2024-11-07T23:53:39Z | 1 | 0 | 090000648351be96 | ||
| DOT-OST-2015-0269-0004 | DOT | None DOT-OST-2015-0269 | Application for Renewal of Exemption | Other | Application-Other | 2017-12-01T05:00:00Z | 2017 | 12 | 2017-12-01T05:00:00Z | 2024-11-07T01:12:48Z | 1 | 0 | 0900006482ccc214 | ||
| DOT-OST-2015-0269-0003 | DOT | None DOT-OST-2015-0269 | Lan Cargo, S.A. (Polling Letter) | Other | Letter(s) | 2015-12-23T05:00:00Z | 2015 | 12 | 2015-12-23T05:00:00Z | 2024-11-11T21:17:19Z | 1 | 0 | 0900006481dcf717 | ||
| DOT-OST-2015-0269-0002 | DOT | None DOT-OST-2015-0269 | Notice of Action Taken re: Lan Cargo, S.A. | Other | Decision | 2015-12-23T05:00:00Z | 2015 | 12 | 2015-12-23T05:00:00Z | 2024-11-11T21:17:33Z | 1 | 0 | 0900006481dcf657 | ||
| DOT-OST-2015-0269-0001 | DOT | None DOT-OST-2015-0269 | Application for Exemption | Other | Application-Other | 2015-12-16T05:00:00Z | 2015 | 12 | 2015-12-16T05:00:00Z | 2024-11-11T21:12:20Z | 1 | 0 | 0900006481db3257 |
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;