From 7939f73fc5effadfa52276461b862c9377c736cd Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Wed, 6 May 2026 13:48:44 -0700 Subject: [PATCH] Add job_id field to Asset schema and deprecate prompt_id (#13736) - Add job_id as a nullable UUID field to the Asset schema - Mark prompt_id as deprecated with note pointing to job_id - No x-runtime tag needed as both runtimes populate the field --- openapi.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/openapi.yaml b/openapi.yaml index 82dcbddb6..92cd36d05 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -5893,7 +5893,14 @@ components: prompt_id: type: string format: uuid - description: ID of the prompt that created this asset + nullable: true + deprecated: true + description: "Deprecated: use job_id instead. ID of the prompt that created this asset." + job_id: + type: string + format: uuid + nullable: true + description: ID of the job that created this asset created_at: type: string format: date-time