{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/contentFilterSeverityResult", "title": "contentFilterSeverityResult", "type": "object", "allOf": [ { "$ref": "#/components/schemas/contentFilterResultBase" }, { "properties": { "severity": { "type": "string", "enum": [ "safe", "low", "medium", "high" ], "x-ms-enum": { "name": "ContentFilterSeverity", "modelAsString": true, "values": [ { "value": "safe", "description": "General content or related content in generic or non-harmful contexts." }, { "value": "low", "description": "Harmful content at a low intensity and risk level." }, { "value": "medium", "description": "Harmful content at a medium intensity and risk level." }, { "value": "high", "description": "Harmful content at a high intensity and risk level." } ] } } } } ], "required": [ "severity", "filtered" ] }