Vonage · Schema

CallList

CommunicationMessagingTelecommunicationsVideo ConferencingVoiceSMSVerification

Properties

Name Type Description
count integer
page_size integer
record_index integer
_embedded object
View JSON Schema on GitHub

JSON Schema

vonage-calllist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallList",
  "title": "CallList",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer"
    },
    "page_size": {
      "type": "integer"
    },
    "record_index": {
      "type": "integer"
    },
    "_embedded": {
      "type": "object",
      "properties": {
        "calls": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/Call"
          }
        }
      }
    }
  }
}