documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "DOT-OST-2013-0135" 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)
document_type 2
agency_id 1
- DOT 12
| 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-2013-0135-0012 | DOT | None DOT-OST-2013-0135 | Notice of Action Taken re: ASL Airlines (Ireland) Limited | Other | Decision | 2025-11-20T05:00:00Z | 2025 | 11 | 2025-11-20T05:00:00Z | 2025-11-21T00:52:47Z | 1 | 0 | 09000064b908c99c | ||
| DOT-OST-2013-0135-0011 | DOT | None DOT-OST-2013-0135 | Application of ASL Airlines (Ireland) Limited for Renewal of Exemption Authority | Other | Application-Other | 2025-09-29T04:00:00Z | 2025 | 9 | 2025-09-29T04:00:00Z | 2025-09-29T16:15:15Z | 1 | 0 | 09000064b8fe30d7 | ||
| DOT-OST-2013-0135-0010 | DOT | None DOT-OST-2013-0135 | Notice of Action Taken re: ASL Airlines (Ireland) Limited | Other | Decision | 2023-11-01T04:00:00Z | 2023 | 11 | 2023-11-01T04:00:00Z | 2024-11-12T06:20:14Z | 1 | 0 | 09000064861c64b1 | ||
| DOT-OST-2013-0135-0009 | DOT | None DOT-OST-2013-0135 | Application of ASL Airlines (Ireland) Limited for Renewal of Exemption Authority | Other | Application-Other | 2023-10-12T04:00:00Z | 2023 | 10 | 2023-10-12T04:00:00Z | 2024-11-07T00:54:26Z | 1 | 0 | 09000064860baf99 | ||
| DOT-OST-2013-0135-0008 | DOT | None DOT-OST-2013-0135 | Notice of Action Taken re: ASL Airlines (Ireland) Limited | Other | Decision | 2021-10-29T04:00:00Z | 2021 | 10 | 2021-10-29T04:00:00Z | 2024-11-07T00:34:08Z | 1 | 0 | 0900006484e0226d | ||
| DOT-OST-2013-0135-0007 | DOT | None DOT-OST-2013-0135 | Application of ASL Airlines (Ireland) Limited for Renewal of Exemption Authority | Other | Application-Other | 2015-11-03T05:00:00Z | 2015 | 11 | 2015-11-03T05:00:00Z | 2024-11-07T23:30:37Z | 1 | 0 | 0900006481cfd9f9 | ||
| DOT-OST-2013-0135-0006 | DOT | None DOT-OST-2013-0135 | Application of Air Contractors (Ireland) Limited for Exemption Authority | Other | Application-Other | 2015-09-11T04:00:00Z | 2015 | 9 | 2015-09-11T04:00:00Z | 2024-11-12T05:42:37Z | 1 | 0 | 0900006481c53848 | ||
| DOT-OST-2013-0135-0005 | DOT | None DOT-OST-2013-0135 | Notice of Action Taken re: Air Contractors Ltd. | Other | Decision | 2013-12-18T05:00:00Z | 2013 | 12 | 2013-12-18T05:00:00Z | 2024-11-07T22:59:53Z | 1 | 0 | 09000064814c9e06 | ||
| DOT-OST-2013-0135-0004 | DOT | None DOT-OST-2013-0135 | Amendment of Air Contractors (Ireland) Limited to Exemption Authority | Other | Amendment | 2013-11-20T05:00:00Z | 2013 | 11 | 2013-11-20T05:00:00Z | 2024-11-12T05:24:46Z | 1 | 0 | 090000648148c437 | ||
| DOT-OST-2013-0135-0003 | DOT | None DOT-OST-2013-0135 | Supplemental Application of Air Contractors (Ireland) Limited for Exemption Authority | Supporting & Related Material | Supplement | 2013-08-13T04:00:00Z | 2013 | 8 | 2024-11-07T22:56:51Z | 0 | 0 | 09000064813af4d6 | |||
| DOT-OST-2013-0135-0002 | DOT | None DOT-OST-2013-0135 | Air Contractors (Ireland) Limited (Additional Information) | Other | Additional Information | 2013-07-18T04:00:00Z | 2013 | 7 | 2013-07-18T04:00:00Z | 2024-11-07T22:56:36Z | 1 | 0 | 090000648136b4d3 | ||
| DOT-OST-2013-0135-0001 | DOT | None DOT-OST-2013-0135 | Application of Air Contractors (Ireland) Limited | Other | Application-Other | 2013-07-11T04:00:00Z | 2013 | 7 | 2013-07-11T04:00:00Z | 2024-11-07T22:55:06Z | 1 | 0 | 090000648135d3d3 |
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;