{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/imageStyle", "title": "imageStyle", "description": "The style of the generated images.", "type": "string", "enum": [ "vivid", "natural" ], "default": "vivid", "x-ms-enum": { "name": "Style", "modelAsString": true, "values": [ { "value": "vivid", "description": "Vivid creates images that are hyper-realistic and dramatic.", "name": "Vivid" }, { "value": "natural", "description": "Natural creates images that are more natural and less hyper-realistic.", "name": "Natural" } ] } }