Webex · Schema

LocationAvailableChargeNumberListGetObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
phoneNumbers array Array of phone numbers.
View JSON Schema on GitHub

JSON Schema

webex-locationavailablechargenumberlistgetobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LocationAvailableChargeNumberListGetObject",
  "title": "LocationAvailableChargeNumberListGetObject",
  "type": "object",
  "example": {
    "phoneNumbers": [
      {
        "phoneNumber": "+12056852221",
        "state": "ACTIVE",
        "isMainNumber": false,
        "tollFreeNumber": false,
        "isServiceNumber": false,
        "owner": {
          "id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9jODhiZGIwNC1jZjU5LTRjMjMtODQ4OC00NTNhOTE3ZDFlMjk",
          "type": "PEOPLE",
          "firstName": "Alex",
          "lastName": "test_16",
          "displayName": "Alex test_16"
        }
      }
    ]
  },
  "required": [
    "phoneNumbers"
  ],
  "properties": {
    "phoneNumbers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LocationAvailableChargeNumberObject"
      },
      "description": "Array of phone numbers."
    }
  }
}