Webex · Schema

ErrorDetails

Details of an error.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
key string An application defined error code.
message array A message providing details about the error.
View JSON Schema on GitHub

JSON Schema

webex-errordetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorDetails",
  "title": "ErrorDetails",
  "description": "Details of an error.",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "An application defined error code.",
      "example": "401"
    },
    "message": {
      "type": "array",
      "description": "A message providing details about the error.",
      "items": {
        "$ref": "#/components/schemas/OperationError"
      }
    }
  }
}