Webex · Schema

ValidateNumbersResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
status object The status of the numbers.
numbers array An array of number objects with number details.
View JSON Schema on GitHub

JSON Schema

webex-validatenumbersresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValidateNumbersResponse",
  "title": "ValidateNumbersResponse",
  "type": "object",
  "required": [
    "status",
    "numbers"
  ],
  "properties": {
    "status": {
      "$ref": "#/components/schemas/Status",
      "description": "The status of the numbers."
    },
    "numbers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Number"
      },
      "description": "An array of number objects with number details."
    }
  }
}