Webex · Schema
ReachabilityTestResultsStunresults1
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. |
| udp | array | List of UDP ports being checked in Reachability test. |
| tcp | array | List of TCP ports being checked in Reachability test. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReachabilityTestResultsStunresults1",
"title": "ReachabilityTestResultsStunresults1",
"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": "Y2lzY29zcGFyazovL3VzL0hZQlJJRF9DT01NQU5EX0lELzJjM2M5ZjllLTczZDktNDQ2MC1hNjY4LTA0NzE2MmZmMWJhYzo2NTJmNmMxMC01NjgxLTExZWQtOTkyZS1kNTY5YzlkMDlhNzU",
"description": "Unique ID of the test."
},
"udp": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/components/schemas/ReachabilityTestresultsFailure"
},
{
"$ref": "#/components/schemas/ReachabilityTestresultsSuccess"
}
]
},
"description": "List of UDP ports being checked in Reachability test."
},
"tcp": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/components/schemas/ReachabilityTestresultsFailure"
},
{
"$ref": "#/components/schemas/ReachabilityTestresultsSuccess"
}
]
},
"description": "List of TCP ports being checked in Reachability test."
}
}
}