Properties
| Name | Type | Description |
|---|---|---|
| deviceId | string | |
| status | string | |
| services | array | |
| cpuUsage | number | CPU usage percentage |
| memoryUsage | number | Memory usage percentage |
| activeCalls | integer | Number of active calls on this device |
| timestamp | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "DeviceStatus",
"type": "object",
"properties": {
"deviceId": {
"type": "string"
},
"status": {
"type": "string"
},
"services": {
"type": "array"
},
"cpuUsage": {
"type": "number",
"description": "CPU usage percentage"
},
"memoryUsage": {
"type": "number",
"description": "Memory usage percentage"
},
"activeCalls": {
"type": "integer",
"description": "Number of active calls on this device"
},
"timestamp": {
"type": "string"
}
}
}