{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-structure/openapi-v2-bounce-statistics-structure.json", "name": "BounceStatistics", "description": "BounceStatistics schema from AhaSend API", "type": "object", "properties": { "from_timestamp": { "type": "datetime", "description": "Start time of the statistics bucket", "example": "2025-03-15T14:30:00Z" }, "to_timestamp": { "type": "datetime", "description": "End time of the statistics bucket", "example": "2025-03-15T14:30:00Z" }, "bounces": { "type": "array", "items": { "$ref": "#/components/schemas/Bounce" }, "description": "Bounce count per bounce classification", "example": [ { "classification": "example_value", "count": 1 } ] } }, "required": [ "from_timestamp", "to_timestamp", "bounces" ] }