Properties
| Name | Type | Description |
|---|---|---|
| title | string | |
| rows | 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-cloud-api-list-section-schema.json",
"title": "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
}
}
}
}
}
}