From 93572030f6a7dc6c4c61e10616cfe1231ad6eac2 Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Tue, 26 May 2026 23:34:27 -0700 Subject: [PATCH] openapi: add cloud-only fields to shared schemas (nullable, x-runtime:[cloud]) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Incremental folds for the cloud↔OSS spec reconciliation. Adds fields that cloud's runtime returns but the shared spec doesn't yet define, as nullable + x-runtime:[cloud] with a [cloud-only] description prefix. Additive and non-breaking for OSS/local (the fields are null there). - Asset.display_name --- openapi.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index f801a39d9..834f67785 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -8099,6 +8099,12 @@ components: name: type: string description: Name of the asset file + display_name: + type: string + nullable: true + x-runtime: + - cloud + description: "[cloud-only] Human-friendly display name for the asset. Cloud-populated; null in local ComfyUI." hash: type: string nullable: true