Webex · Schema

HTTPConnectivityTest

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-httpconnectivitytest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HTTPConnectivityTest",
  "title": "HTTPConnectivityTest",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "example": "HTTPConnectivityTest",
      "description": "The type of test result."
    },
    "results": {
      "type": "array",
      "items": {
        "anyOf": [
          {
            "$ref": "#/components/schemas/ServiceTypeResult3"
          },
          {
            "$ref": "#/components/schemas/ServiceTypeResult2"
          }
        ]
      },
      "description": "Test Results from different services."
    }
  }
}