Webex · Schema

ReportError

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
code number The error code itself.
description string A textual representation of the error code.
View JSON Schema on GitHub

JSON Schema

webex-reporterror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReportError",
  "title": "ReportError",
  "type": "object",
  "properties": {
    "code": {
      "type": "number",
      "example": 2024,
      "description": "The error code itself."
    },
    "description": {
      "type": "string",
      "example": "Billing Report not found.",
      "description": "A textual representation of the error code."
    }
  }
}