{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-schema/openapi-v2-tracking-schema.json", "title": "Tracking", "description": "Tracking schema from AhaSend API", "type": "object", "properties": { "open": { "type": "boolean", "nullable": true, "description": "Whether to track opens", "example": true }, "click": { "type": "boolean", "nullable": true, "description": "Whether to track clicks", "example": true } }, "example": { "open": true, "click": true } }