Webex · Schema

ErrorObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
key string HTTP status code.
message array List of error messages.
View JSON Schema on GitHub

JSON Schema

webex-errorobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorObject",
  "title": "ErrorObject",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "HTTP status code."
    },
    "message": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ErrorMessageObject"
      },
      "description": "List of error messages."
    }
  }
}