From 83faa16d3b1fdeae59f812c25d69522cc0718c7a Mon Sep 17 00:00:00 2001 From: Sweets Sweetman Date: Tue, 7 Jul 2026 17:48:08 -0500 Subject: [PATCH] docs(tasks): add nullable title to task run schema (originating scheduled task) GET /api/tasks/runs list mode gains a per-run title resolved from the originating scheduled_actions row (via its trigger_schedule_id). Null when the run cannot be mapped to a scheduled task; not present in retrieve mode. Contract for recoupable/chat#1850 (video-parity: named homepage run rows). Co-Authored-By: Claude Fable 5 --- api-reference/openapi/releases.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/api-reference/openapi/releases.json b/api-reference/openapi/releases.json index 65114e9..48fdad9 100644 --- a/api-reference/openapi/releases.json +++ b/api-reference/openapi/releases.json @@ -3574,6 +3574,11 @@ "type": "string", "description": "The task type identifier (e.g. 'setup-sandbox', 'run-sandbox-command')" }, + "title": { + "type": "string", + "nullable": true, + "description": "The originating scheduled task's title, when resolvable (from the scheduled task that triggered the run). Only present when listing runs (runId omitted); null when the run cannot be mapped to a scheduled task." + }, "idempotencyKey": { "type": "string", "nullable": true,