Webex · Schema

BandwidthTest

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
type string The type of test result.
results array Test Results from different services.
View JSON Schema on GitHub

JSON Schema

webex-bandwidthtest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BandwidthTest",
  "title": "BandwidthTest",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "example": "BandwidthTest",
      "description": "The type of test result."
    },
    "results": {
      "type": "array",
      "items": {
        "anyOf": [
          {
            "$ref": "#/components/schemas/ServiceTypeResult4"
          },
          {
            "$ref": "#/components/schemas/ServiceTypeResult2"
          }
        ]
      },
      "description": "Test Results from different services."
    }
  }
}