WhatsApp · JSON Structure

Whatsapp Cloud Api List Section Structure

ListSection from WhatsApp API

Type: object Properties: 2

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

Properties

title rows

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-cloud-api-list-section-structure.json",
  "name": "ListSection",
  "description": "ListSection from WhatsApp API",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "example": "example_value"
    },
    "rows": {
      "type": "array",
      "maxItems": 10,
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "maxLength": 200
          },
          "title": {
            "type": "string",
            "maxLength": 24
          },
          "description": {
            "type": "string",
            "maxLength": 72
          }
        }
      }
    }
  }
}