Webex · Schema

ReachabilityTestresultsdestinationcluster

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
destinationCluster string Cloud Webex cluster against which Reachability test is being executed.
stunResults array STUN test results for a Video Mesh cluster.
View JSON Schema on GitHub

JSON Schema

webex-reachabilitytestresultsdestinationcluster-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReachabilityTestresultsdestinationcluster",
  "title": "ReachabilityTestresultsdestinationcluster",
  "type": "object",
  "properties": {
    "destinationCluster": {
      "type": "string",
      "example": "Amsterdam Cluster",
      "description": "Cloud Webex cluster against which Reachability test is being executed."
    },
    "stunResults": {
      "type": "array",
      "items": {
        "anyOf": [
          {
            "$ref": "#/components/schemas/ReachabilityTestResultsStunresults1"
          },
          {
            "$ref": "#/components/schemas/ReachabilityTestResultsStunresults2"
          }
        ]
      },
      "description": "STUN test results for a Video Mesh cluster."
    }
  }
}