Retention schema from AhaSend API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-schema/openapi-v2-retention-schema.json", "title": "Retention", "description": "Retention schema from AhaSend API", "type": "object", "properties": { "metadata": { "type": "integer", "nullable": true, "description": "Number of days to retain metadata", "minimum": 1, "maximum": 30, "example": 1 }, "data": { "type": "integer", "nullable": true, "description": "Number of days to retain data", "minimum": 0, "maximum": 30, "example": 1 } }, "example": { "metadata": 1, "data": 0 } }