{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/whatsapp/refs/heads/main/json-schema/whatsapp-flows-api-flow-validation-error-schema.json", "title": "FlowValidationError", "description": "FlowValidationError from WhatsApp API", "type": "object", "properties": { "error": { "type": "string", "example": "example_value" }, "error_type": { "type": "string", "example": "text" }, "message": { "type": "string", "example": "Hello from WhatsApp!" }, "line_start": { "type": "integer", "example": 42 }, "line_end": { "type": "integer", "example": 42 }, "column_start": { "type": "integer", "example": 42 }, "column_end": { "type": "integer", "example": 42 }, "pointers": { "type": "array", "items": { "type": "string" } } } }