Webex · Schema

ServiceObject

Represents a list of services that are assigned to a user.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
services array The list of allowed services.
View JSON Schema on GitHub

JSON Schema

webex-serviceobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceObject",
  "title": "ServiceObject",
  "type": "object",
  "description": "Represents a list of services that are assigned to a user.",
  "example": {
    "services": [
      "Anonymous Call Rejection",
      "Call Forwarding Always",
      "Call Forwarding Busy",
      "Call Forwarding No Answer",
      "Call Notify"
    ]
  },
  "required": [
    "services"
  ],
  "properties": {
    "services": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ServicesEnum"
      },
      "description": "The list of allowed services."
    }
  }
}