{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EmailReputationResponse", "title": "EmailReputationResponse", "type": "object", "description": "Email reputation and validation response", "properties": { "email": { "type": "string", "format": "email", "description": "The email address analyzed", "example": "test@example.com" }, "deliverability": { "$ref": "#/components/schemas/Deliverability" }, "quality": { "$ref": "#/components/schemas/EmailQuality" }, "sender": { "$ref": "#/components/schemas/SenderInfo" }, "domain": { "$ref": "#/components/schemas/DomainInfo" }, "risk": { "$ref": "#/components/schemas/RiskInfo" }, "breaches": { "$ref": "#/components/schemas/BreachInfo" } } }