Microsoft Azure · Schema

imagesResponseFormat

The format in which the generated images are returned.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1
View JSON Schema on GitHub

JSON Schema

microsoft-azure-imagesresponseformat-schema.json Raw ↑
{
  "$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"
      }
    ]
  }
}