{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/email-reputation-breach-info-schema.json", "title": "BreachInfo", "description": "Data breach history for the email", "type": "object", "properties": { "total_breaches": { "type": "integer", "description": "Total number of breaches the email appeared in", "example": 0 }, "date_first_breached": { "type": "string", "format": "date", "description": "Date of the earliest known breach", "example": "2020-01-15" }, "date_last_breached": { "type": "string", "format": "date", "description": "Date of the most recent breach", "example": "2023-06-01" }, "breached_domains": { "type": "array", "description": "Domains where the email was breached", "items": { "type": "string" }, "example": [ "breached-site.com" ] } } }