Microsoft Azure · Schema

imageDetailLevel

Specifies the detail level of the image.

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

JSON Schema

microsoft-azure-imagedetaillevel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/imageDetailLevel",
  "title": "imageDetailLevel",
  "type": "string",
  "description": "Specifies the detail level of the image.",
  "enum": [
    "auto",
    "low",
    "high"
  ],
  "default": "auto",
  "x-ms-enum": {
    "name": "ImageDetailLevel",
    "modelAsString": true,
    "values": [
      {
        "value": "auto",
        "description": "The image detail level is auto."
      },
      {
        "value": "low",
        "description": "The image detail level is low."
      },
      {
        "value": "high",
        "description": "The image detail level is high."
      }
    ]
  }
}