Webex · Schema

numberItem

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
locationId string The source location of the numbers on which to execute the operation.
numbers array The numbers on which to execute the operation.
View JSON Schema on GitHub

JSON Schema

webex-numberitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/numberItem",
  "title": "numberItem",
  "type": "object",
  "required": [
    "locationId",
    "numbers"
  ],
  "properties": {
    "locationId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OLzUyMjNiYmVkLTQyYzktNDU0ZC1hMWYzLTdmYWQ1Y2M3ZTZlMw",
      "description": "The source location of the numbers on which to execute the operation."
    },
    "numbers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The numbers on which to execute the operation."
    }
  }
}