{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SenderInfo", "title": "SenderInfo", "type": "object", "description": "Information and statistics for a sender address.", "properties": { "address": { "type": "string", "format": "email", "description": "The sender email address.", "example": "example_value" }, "created_at": { "type": "string", "format": "date-time", "description": "When the sender was first used.", "example": "2026-01-15T10:30:00Z" }, "sent": { "type": "integer", "description": "Total number of messages sent from this address.", "example": 10 }, "hard_bounces": { "type": "integer", "description": "Total hard bounces.", "example": 10 }, "soft_bounces": { "type": "integer", "description": "Total soft bounces.", "example": 10 }, "rejects": { "type": "integer", "description": "Total rejects.", "example": 10 }, "complaints": { "type": "integer", "description": "Total spam complaints.", "example": 10 }, "unsubs": { "type": "integer", "description": "Total unsubscribes.", "example": 10 }, "opens": { "type": "integer", "description": "Total opens.", "example": 10 }, "clicks": { "type": "integer", "description": "Total clicks.", "example": 10 }, "unique_opens": { "type": "integer", "description": "Unique opens.", "example": 10 }, "unique_clicks": { "type": "integer", "description": "Unique clicks.", "example": 10 } } }