Webex · Schema

ErrorMessage

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
description string Error message.
code string Internal error code.
locationId string Error messages describing the location ID in which the error occurs. For a move operation this is the target location ID.
View JSON Schema on GitHub

JSON Schema

webex-errormessage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorMessage",
  "title": "ErrorMessage",
  "type": "object",
  "required": [
    "description"
  ],
  "properties": {
    "description": {
      "type": "string",
      "description": "Error message."
    },
    "code": {
      "type": "string",
      "description": "Internal error code."
    },
    "locationId": {
      "type": "string",
      "description": "Error messages describing the location ID in which the error occurs. For a move operation this is the target location ID."
    }
  }
}