Reference to an input image for generative operations
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InputImageReference", "title": "InputImageReference", "type": "object", "description": "Reference to an input image for generative operations", "required": [ "source" ], "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" } } } } }