IBM WebSphere · Schema
ServerHealth
Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
Properties
| Name | Type | Description |
|---|---|---|
| serverId | string | |
| serverName | string | |
| status | string | |
| uptime | integer | Uptime in seconds |
| cpuUsage | number | CPU usage percentage |
| memoryUsage | number | Memory usage percentage |
| openVulnerabilities | integer | |
| lastHealthCheck | string | |
| checks | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ServerHealth",
"title": "ServerHealth",
"type": "object",
"properties": {
"serverId": {
"type": "string",
"example": "500123"
},
"serverName": {
"type": "string",
"example": "example_value"
},
"status": {
"type": "string",
"enum": [
"healthy",
"warning",
"critical"
],
"example": "healthy"
},
"uptime": {
"type": "integer",
"description": "Uptime in seconds",
"example": 10
},
"cpuUsage": {
"type": "number",
"description": "CPU usage percentage",
"example": 42.5
},
"memoryUsage": {
"type": "number",
"description": "Memory usage percentage",
"example": 42.5
},
"openVulnerabilities": {
"type": "integer",
"example": 10
},
"lastHealthCheck": {
"type": "string",
"format": "date-time",
"example": "2026-01-15T10:30:00Z"
},
"checks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"pass",
"warn",
"fail"
]
},
"message": {
"type": "string"
}
}
},
"example": []
}
}
}