{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-schema/openapi-v2-paginated-suppressions-response-schema.json", "title": "PaginatedSuppressionsResponse", "description": "PaginatedSuppressionsResponse schema from AhaSend API", "type": "object", "properties": { "object": { "type": "string", "enum": [ "list" ], "description": "Object type identifier", "example": "list" }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Suppression" }, "description": "Array of suppressions", "example": [ { "object": "suppression", "id": "500123", "created_at": "2025-03-15T14:30:00Z", "updated_at": "2025-03-15T14:30:00Z", "email": "user@example.com" } ] }, "pagination": { "$ref": "#/components/schemas/PaginationInfo" } }, "required": [ "object", "data", "pagination" ] }