{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FastUpscaleRequest", "title": "FastUpscaleRequest", "type": "object", "required": [ "image" ], "properties": { "image": { "type": "string", "format": "binary", "description": "The image to upscale. Must be a valid image file." }, "output_format": { "type": "string", "enum": [ "jpeg", "png", "webp" ], "default": "png", "description": "The output format of the upscaled image." } } }