{
    "title": "cluster agent state",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.agent.AgentClusterState",
    "type": "object",
    "required": [
        "severity",
        "_text"
    ],
    "properties": {
        "severity": {
            "description": "0=ALL_SUBAGENTS_ARE_COUPLED_AND_ENABLED, 1=ONLY_SOME_SUBAGENTS_ARE_COUPLED_AND_ENABLED, 2=NO_SUBAGENTS_ARE_COUPLED_AND_ENABLED, 2=UNKNOWN",
            "type": "integer"
        },
        "_text": {
            "javaType": "com.sos.joc.model.agent.AgentClusterStateText",
            "type": "string",
            "enum": [
                "ALL_SUBAGENTS_ARE_COUPLED_AND_ENABLED",
                "ONLY_SOME_SUBAGENTS_ARE_COUPLED_AND_ENABLED",
                "NO_SUBAGENTS_ARE_COUPLED_AND_ENABLED",
                "UNKNOWN"
            ]
        }
    },
    "additionalProperties": false
}