Webex · Schema

serviceTestResults

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
serviceType string Type of service.
services array List of individual service test results.
View JSON Schema on GitHub

JSON Schema

webex-servicetestresults-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/serviceTestResults",
  "title": "serviceTestResults",
  "type": "object",
  "properties": {
    "serviceType": {
      "type": "string",
      "example": "WebexCloud",
      "description": "Type of service."
    },
    "services": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/singleServiceTestResult"
      },
      "description": "List of individual service test results."
    }
  }
}