IBM WebSphere · Schema

ClusterStatus

Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware

Properties

Name Type Description
name string
status string
membersStarted integer
membersTotal integer
message string
View JSON Schema on GitHub

JSON Schema

websphere-clusterstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClusterStatus",
  "title": "ClusterStatus",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "status": {
      "type": "string",
      "example": "example_value"
    },
    "membersStarted": {
      "type": "integer",
      "example": 10
    },
    "membersTotal": {
      "type": "integer",
      "example": 10
    },
    "message": {
      "type": "string",
      "example": "example_value"
    }
  }
}