Webex · Schema

networkTestResults

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
triggerType string Type of trigger for the test.
results array List of individual network test results.
View JSON Schema on GitHub

JSON Schema

webex-networktestresults-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/networkTestResults",
  "title": "networkTestResults",
  "type": "object",
  "properties": {
    "triggerType": {
      "type": "string",
      "example": "Periodic",
      "description": "Type of trigger for the test."
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/singleNetworkTestResult"
      },
      "description": "List of individual network test results."
    }
  }
}