Webex · Schema

ConnectivityTestResultsForNode

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
timestamp string The timestamp of the test run.
triggerType string The type of the test being executed. Can be either `OnDemand` or `Periodic`.
id string Unique ID of the test.
result array
View JSON Schema on GitHub

JSON Schema

webex-connectivitytestresultsfornode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectivityTestResultsForNode",
  "title": "ConnectivityTestResultsForNode",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string",
      "example": "2022-03-15T15:53:00Z",
      "description": "The timestamp of the test run."
    },
    "triggerType": {
      "type": "string",
      "example": "OnDemand",
      "description": "The type of the test being executed. Can be either `OnDemand` or `Periodic`."
    },
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0NPTU1BTkRJRC8xZWI2NWZkZi05NjQzLTQxN2YtOTk3NC1hZDcyY2FlMGUxMGY6YWRlODhhNjAtMzk5Mi0xMWVkLTlhYmQtYzUyMjRiZjNjMzQ4",
      "description": "Unique ID of the test."
    },
    "result": {
      "type": "array",
      "items": {
        "anyOf": [
          {
            "$ref": "#/components/schemas/DNSResolutionTest"
          },
          {
            "$ref": "#/components/schemas/WebSocketConnectivityTest"
          },
          {
            "$ref": "#/components/schemas/HTTPConnectivityTest"
          },
          {
            "$ref": "#/components/schemas/BandwidthTest"
          }
        ]
      }
    }
  }
}