Webex · Schema

ErrorResponse

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
message string A human readable description of the error.
errors array An array of error details.
trackingId string A unique identifier to help with debugging.
View JSON Schema on GitHub

JSON Schema

webex-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "A human readable description of the error."
    },
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ErrorDetail"
      },
      "description": "An array of error details."
    },
    "trackingId": {
      "type": "string",
      "description": "A unique identifier to help with debugging."
    }
  }
}