Webex · Schema

ItemObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
itemNumber number Index of error.
trackingId string Unique identifier to track the HTTP request.
error object Error details.
View JSON Schema on GitHub

JSON Schema

webex-itemobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemObject",
  "title": "ItemObject",
  "type": "object",
  "properties": {
    "itemNumber": {
      "type": "number",
      "description": "Index of error."
    },
    "trackingId": {
      "type": "string",
      "description": "Unique identifier to track the HTTP request."
    },
    "error": {
      "$ref": "#/components/schemas/ErrorObject",
      "description": "Error details."
    }
  }
}