Vonage · Schema

VerifySearchResponse

CommunicationMessagingTelecommunicationsVideo ConferencingVoiceSMSVerification

Properties

Name Type Description
request_id string
account_id string
status string
number string
price string
currency string
sender_id string
date_submitted string
date_finalized string
first_event_date string
last_event_date string
checks array
View JSON Schema on GitHub

JSON Schema

vonage-verifysearchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VerifySearchResponse",
  "title": "VerifySearchResponse",
  "type": "object",
  "properties": {
    "request_id": {
      "type": "string"
    },
    "account_id": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "number": {
      "type": "string"
    },
    "price": {
      "type": "string"
    },
    "currency": {
      "type": "string"
    },
    "sender_id": {
      "type": "string"
    },
    "date_submitted": {
      "type": "string"
    },
    "date_finalized": {
      "type": "string"
    },
    "first_event_date": {
      "type": "string"
    },
    "last_event_date": {
      "type": "string"
    },
    "checks": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "date_received": {
            "type": "string"
          },
          "code": {
            "type": "string"
          },
          "status": {
            "type": "string"
          },
          "ip_address": {
            "type": "string"
          }
        }
      }
    }
  }
}