From ce906bab74a016fe5526459a4eca82ada78b80b3 Mon Sep 17 00:00:00 2001 From: Sweets Sweetman Date: Wed, 22 Jul 2026 16:57:23 -0500 Subject: [PATCH] =?UTF-8?q?docs(tasks):=20document=20timezone=20on=20the?= =?UTF-8?q?=20task=20read=20response=20(chat#1881=203c=C2=B7api-read)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a nullable `timezone` to the Task schema returned by GET /api/tasks, read from the Trigger.dev schedule (the source of truth). Lets the chat edit UI prefill the current timezone. Additive; JSON re-validated. Co-Authored-By: Claude Opus 4.8 (1M context) --- api-reference/openapi/releases.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/api-reference/openapi/releases.json b/api-reference/openapi/releases.json index bd31553..f6c14dc 100644 --- a/api-reference/openapi/releases.json +++ b/api-reference/openapi/releases.json @@ -3616,6 +3616,12 @@ "type": "string", "description": "Cron expression defining when the task should execute (e.g., '0 10 * * *')" }, + "timezone": { + "type": "string", + "nullable": true, + "description": "IANA time zone the task's cron is interpreted in, read from the Trigger.dev schedule (the source of truth). Null when the task has no schedule or the timezone can't be read.", + "example": "America/New_York" + }, "account_id": { "type": "string", "format": "uuid",