{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/whatsapp/refs/heads/main/json-schema/whatsapp-business-management-api-conversation-analytics-schema.json", "title": "ConversationAnalytics", "description": "ConversationAnalytics from WhatsApp API", "type": "object", "properties": { "conversation_analytics": { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "data_points": { "type": "array", "items": { "type": "object", "properties": { "start": { "type": "integer" }, "end": { "type": "integer" }, "conversation": { "type": "integer" }, "cost": { "type": "number" } } } } } } } } } } }