{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/whatsapp/refs/heads/main/json-structure/whatsapp-cloud-api-template-message-structure.json", "name": "TemplateMessage", "description": "TemplateMessage from WhatsApp API", "type": "object", "properties": { "name": { "type": "string", "description": "Template name", "example": "Example Business" }, "language": { "type": "object", "required": [ "code" ], "properties": { "code": { "type": "string", "description": "Language/locale code" }, "policy": { "type": "string", "default": "deterministic" } } }, "components": { "type": "array", "items": { "$ref": "#/components/schemas/TemplateComponent" } } }, "required": [ "name", "language" ] }