{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/imagesResponseFormat", "title": "imagesResponseFormat", "description": "The format in which the generated images are returned.", "type": "string", "enum": [ "url", "b64_json" ], "default": "url", "x-ms-enum": { "name": "ImagesResponseFormat", "modelAsString": true, "values": [ { "value": "url", "description": "The URL that provides temporary access to download the generated images.", "name": "Url" }, { "value": "b64_json", "description": "The generated images are returned as base64 encoded string.", "name": "Base64Json" } ] } }