Webex · Schema

GetWorkspaceCallbackNumberDependenciesObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
isLocationEcbnDefault boolean When `isLocationEcbnDefault` is true, then it is the default emergency callback number for the location.
isSelfEcbnDefault boolean Default emergency callback number of the place if `true`.
dependentMemberCount number Number of members using this workspace as their emergency callback number.
View JSON Schema on GitHub

JSON Schema

webex-getworkspacecallbacknumberdependenciesobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetWorkspaceCallbackNumberDependenciesObject",
  "title": "GetWorkspaceCallbackNumberDependenciesObject",
  "type": "object",
  "required": [
    "isLocationEcbnDefault",
    "isSelfEcbnDefault",
    "dependentMemberCount"
  ],
  "properties": {
    "isLocationEcbnDefault": {
      "type": "boolean",
      "example": true,
      "description": "When `isLocationEcbnDefault` is true, then it is the default emergency callback number for the location."
    },
    "isSelfEcbnDefault": {
      "type": "boolean",
      "description": "Default emergency callback number of the place if `true`."
    },
    "dependentMemberCount": {
      "type": "number",
      "description": "Number of members using this workspace as their emergency callback number."
    }
  }
}