Microsoft Azure · Schema

imageQuality

The quality of the image that will be generated.

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

JSON Schema

microsoft-azure-imagequality-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/imageQuality",
  "title": "imageQuality",
  "description": "The quality of the image that will be generated.",
  "type": "string",
  "enum": [
    "standard",
    "hd"
  ],
  "default": "standard",
  "x-ms-enum": {
    "name": "Quality",
    "modelAsString": true,
    "values": [
      {
        "value": "standard",
        "description": "Standard quality creates images with standard quality.",
        "name": "Standard"
      },
      {
        "value": "hd",
        "description": "HD quality creates images with finer details and greater consistency across the image.",
        "name": "HD"
      }
    ]
  }
}