{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RiskInfo", "title": "RiskInfo", "type": "object", "description": "Risk assessment for the email", "properties": { "address_risk_status": { "type": "string", "description": "Risk level of the specific email address", "example": "low", "enum": [ "low", "medium", "high", "critical" ] }, "domain_risk_status": { "type": "string", "description": "Risk level of the domain", "example": "low", "enum": [ "low", "medium", "high", "critical" ] } } }