Webex · Schema

UserNumbersPatch

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
distinctiveRingEnabled boolean Enables a distinctive ring pattern for the person.
phoneNumbers array List of phone numbers that are assigned to a person.
View JSON Schema on GitHub

JSON Schema

webex-usernumberspatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserNumbersPatch",
  "title": "UserNumbersPatch",
  "type": "object",
  "required": [
    "phoneNumbers"
  ],
  "properties": {
    "distinctiveRingEnabled": {
      "type": "boolean",
      "example": true,
      "description": "Enables a distinctive ring pattern for the person."
    },
    "phoneNumbers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PhoneNumber"
      },
      "description": "List of phone numbers that are assigned to a person."
    }
  }
}