IBM WebSphere · Schema
HealthStatus
Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
Properties
| Name | Type | Description |
|---|---|---|
| status | string | |
| serverName | string | |
| uptime | integer | Server uptime in milliseconds |
| checks | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HealthStatus",
"title": "HealthStatus",
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"UP",
"DOWN",
"DEGRADED"
],
"example": "UP"
},
"serverName": {
"type": "string",
"example": "example_value"
},
"uptime": {
"type": "integer",
"description": "Server uptime in milliseconds",
"example": 10
},
"checks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"UP",
"DOWN"
]
},
"data": {
"type": "object",
"additionalProperties": true
}
}
},
"example": []
}
}
}