{ "$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" } ] } }