{
    "title": "component state",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.agent.AgentState",
    "type": "object",
    "required": [
        "severity",
        "_text"
    ],
    "properties": {
        "severity": {
            "description": "0=COUPLED, 1=RESETTING, 1=RESET, 2=COUPLINGFAILED, 3=UNKNOWN",
            "type": "integer"
        },
        "_text": {
            "javaType": "com.sos.joc.model.agent.AgentStateText",
            "type": "string",
            "enum": [
                "COUPLED",
                "RESETTING",
                "INITIALISED",
                "COUPLINGFAILED",
                "SHUTDOWN",
                "UNKNOWN"
            ]
        },
        "_reason": {
            "javaType": "com.sos.joc.model.agent.AgentStateReason",
            "type": "string",
            "enum": [
                "FRESH",
                "RESTARTED",
                "RESET"
            ]
        }
    },
    "additionalProperties": false
}