Properties
| Name | Type | Description |
|---|---|---|
| error | string | |
| error_type | string | |
| message | string | |
| line_start | integer | |
| line_end | integer | |
| column_start | integer | |
| column_end | integer | |
| pointers | array |
JSON Schema
{
"$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"
}
}
}
}