WhatsApp · JSON Structure

Whatsapp Flows Api Flow Validation Error Structure

FlowValidationError from WhatsApp API

Type: object Properties: 8

FlowValidationError is a JSON Structure definition published by WhatsApp, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

error error_type message line_start line_end column_start column_end pointers

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/whatsapp/refs/heads/main/json-structure/whatsapp-flows-api-flow-validation-error-structure.json",
  "name": "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": "int32",
      "example": 42
    },
    "line_end": {
      "type": "int32",
      "example": 42
    },
    "column_start": {
      "type": "int32",
      "example": 42
    },
    "column_end": {
      "type": "int32",
      "example": 42
    },
    "pointers": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}