WhatsApp · Schema

CursorPaging

CursorPaging from WhatsApp API

Properties

Name Type Description
cursors object
next string
View JSON Schema on GitHub

JSON Schema

whatsapp-flows-api-cursor-paging-schema.json Raw ↑
{
  "$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-cursor-paging-schema.json",
  "title": "CursorPaging",
  "description": "CursorPaging from WhatsApp API",
  "type": "object",
  "properties": {
    "cursors": {
      "type": "object",
      "properties": {
        "before": {
          "type": "string"
        },
        "after": {
          "type": "string"
        }
      }
    },
    "next": {
      "type": "string",
      "format": "uri",
      "example": "example_value"
    }
  }
}