Webex · Schema

ErrorOrImpactItem

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
code number Error or Impact code.
message string Message string with more error or impact information.
View JSON Schema on GitHub

JSON Schema

webex-errororimpactitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorOrImpactItem",
  "title": "ErrorOrImpactItem",
  "type": "object",
  "required": [
    "code",
    "message"
  ],
  "properties": {
    "code": {
      "type": "number",
      "example": 1026016,
      "description": "Error or Impact code."
    },
    "message": {
      "type": "string",
      "example": "User should have either phone number or extension.",
      "description": "Message string with more error or impact information."
    }
  }
}