Webex · Schema

singleNetworkTestResult

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
timestamp string Timestamp when the test was triggered
type string Type of network test.
results array List of service test results.
View JSON Schema on GitHub

JSON Schema

webex-singlenetworktestresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/singleNetworkTestResult",
  "title": "singleNetworkTestResult",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "example": "2024-01-15T10:15:30Z",
      "description": "Timestamp when the test was triggered"
    },
    "type": {
      "type": "string",
      "example": "HTTPConnectivityTest",
      "description": "Type of network test."
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/serviceTestResults"
      },
      "description": "List of service test results."
    }
  }
}