{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-structure/email-reputation-risk-info-structure.json", "name": "RiskInfo", "description": "Risk assessment for the email", "type": "object", "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" ] } } }