Facebook · Schema

ConversationList

Paginated list of conversations.

Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking

Properties

Name Type Description
data array
paging object
View JSON Schema on GitHub

JSON Schema

facebook-conversationlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConversationList",
  "title": "ConversationList",
  "type": "object",
  "description": "Paginated list of conversations.",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Conversation"
      }
    },
    "paging": {
      "type": "object",
      "properties": {
        "cursors": {
          "type": "object",
          "properties": {
            "before": {
              "type": "string"
            },
            "after": {
              "type": "string"
            }
          }
        },
        "next": {
          "type": "string",
          "format": "uri"
        }
      }
    }
  }
}