Vertiv · Schema
StatusSummary
Status summary with alarm and event counts
Critical InfrastructureData CenterDCIMInfrastructure MonitoringPower ManagementUPS
Properties
| Name | Type | Description |
|---|---|---|
| overall | string | Overall status value |
| alarmCount | integer | Number of active alarms |
| warningCount | integer | Number of active warnings |
| infoCount | integer | Number of informational events |
| downCount | integer | Number of down devices/points |
| faultCount | integer | Number of faults |
| maintenanceCount | integer | Number of items in maintenance mode |
| disabledCount | integer | Number of disabled items |
| normalCount | integer | Number of items in normal state |
| unknownCount | integer | Number of items in unknown state |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StatusSummary",
"title": "StatusSummary",
"type": "object",
"description": "Status summary with alarm and event counts",
"properties": {
"overall": {
"type": "string",
"description": "Overall status value",
"enum": [
"NORMAL",
"ALARM",
"WARNING",
"DOWN",
"MAINTENANCE",
"DISABLED",
"FAULT",
"UNKNOWN"
]
},
"alarmCount": {
"type": "integer",
"description": "Number of active alarms"
},
"warningCount": {
"type": "integer",
"description": "Number of active warnings"
},
"infoCount": {
"type": "integer",
"description": "Number of informational events"
},
"downCount": {
"type": "integer",
"description": "Number of down devices/points"
},
"faultCount": {
"type": "integer",
"description": "Number of faults"
},
"maintenanceCount": {
"type": "integer",
"description": "Number of items in maintenance mode"
},
"disabledCount": {
"type": "integer",
"description": "Number of disabled items"
},
"normalCount": {
"type": "integer",
"description": "Number of items in normal state"
},
"unknownCount": {
"type": "integer",
"description": "Number of items in unknown state"
}
}
}