Reference to an input image for generative operations
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-creative-suite/refs/heads/main/json-schema/adobe-creative-suite-firefly-input-image-reference-schema.json", "title": "InputImageReference", "description": "Reference to an input image for generative operations", "type": "object", "properties": { "source": { "type": "object", "description": "Source of the input image", "properties": { "url": { "type": "string", "description": "Publicly accessible URL of the input image", "example": "https://my-bucket.s3.amazonaws.com/source-image.jpg" }, "uploadId": { "type": "string", "description": "Upload ID for a previously uploaded image via the Firefly upload API" } } } }, "required": [ "source" ] }