documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "DOT-OST-2016-0036" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-2016-0036-0010 | DOT | None DOT-OST-2016-0036 | Notice of Action Taken re: Link Conexion Aerea S.A. de C.V. d/b/a TAR Aerolineas | Other | Decision | 2026-01-23T05:00:00Z | 2026 | 1 | 2026-01-23T05:00:00Z | 2026-01-23T23:28:09Z | 1 | 0 | 09000064b917d116 | ||
| DOT-OST-2016-0036-0009 | DOT | None DOT-OST-2016-0036 | Application of Link Conexion Aerea S.A. de C.V. dba TAR Aerolineas for Renewal of Exemption Authority | Other | Application-Other | 2025-12-22T05:00:00Z | 2025 | 12 | 2025-12-22T05:00:00Z | 2026-01-02T21:01:25Z | 1 | 0 | 09000064b90fd774 | ||
| DOT-OST-2016-0036-0008 | DOT | None DOT-OST-2016-0036 | Notice of Action Taken re: Link Conexion Aerea S.A. de C.V. dba TAR Aerolineas | Other | Decision | 2024-01-11T05:00:00Z | 2024 | 1 | 2024-01-11T05:00:00Z | 2024-11-12T22:20:04Z | 1 | 0 | 0900006486393c5b | ||
| DOT-OST-2016-0036-0007 | DOT | None DOT-OST-2016-0036 | Application of Link Conexion Aerea S.A. de C.V. dba TAR Aerolineas for Renewal of Exemption Authority | Other | Application-Other | 2019-06-14T04:00:00Z | 2019 | 6 | 2019-06-14T04:00:00Z | 2024-11-12T23:03:47Z | 1 | 0 | 0900006483d10506 | ||
| DOT-OST-2016-0036-0006 | DOT | None DOT-OST-2016-0036 | Notice of Action Taken re: Link Conexion Aerea S.A. de C.V. d/b/a TAR Aerolineas | Other | Decision | 2017-08-07T04:00:00Z | 2017 | 8 | 2017-08-07T04:00:00Z | 2024-11-07T01:08:07Z | 1 | 0 | 09000064829cbba3 | ||
| DOT-OST-2016-0036-0005 | DOT | None DOT-OST-2016-0036 | Application of Link Conexion Aerea S.A. de C.V. d/b/a TAR Aerolineas for Renewal of Exemption Authority | Other | Application-Other | 2017-04-21T04:00:00Z | 2017 | 4 | 2017-04-21T04:00:00Z | 2024-11-07T00:55:54Z | 1 | 0 | 0900006482566303 | ||
| DOT-OST-2016-0036-0004 | DOT | None DOT-OST-2016-0036 | Notice of Action Taken re: Link Conexion Aerea S.A. de C.V. d/b/a Tar Aerolineas | Other | Decision | 2016-04-21T04:00:00Z | 2016 | 4 | 2016-04-21T04:00:00Z | 2024-11-12T06:10:28Z | 1 | 0 | 0900006481f7d213 | ||
| DOT-OST-2016-0036-0003 | DOT | None DOT-OST-2016-0036 | Link Conexion Aerea S.A. de C.V. d/b/a Tar Aerolineas (Polling Letter) | Other | Letter(s) | 2016-03-10T05:00:00Z | 2016 | 3 | 2016-03-10T05:00:00Z | 2024-11-12T06:02:32Z | 1 | 0 | 0900006481eba2cc | ||
| DOT-OST-2016-0036-0002 | DOT | None DOT-OST-2016-0036 | Motion of Link Conexion Aerea S.A. de C.V. d/b/a TAR Aerolineas for Confidential Treatment Under 14 C.F.R. 302.12 | Other | Motion | 2016-03-04T05:00:00Z | 2016 | 3 | 2016-03-04T05:00:00Z | 2024-11-12T06:01:37Z | 1 | 0 | 0900006481ea102d | ||
| DOT-OST-2016-0036-0001 | DOT | None DOT-OST-2016-0036 | Application of Link Conexion Aerea S.A. de C.V. d/b/a Tar Aerolineas for an Exemption | Other | Application-Other | 2016-03-03T05:00:00Z | 2016 | 3 | 2016-03-03T05:00:00Z | 2024-11-12T06:05:26Z | 1 | 0 | 0900006481e9e693 |
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;