{
    "title": "jobChain state",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.jobChain.JobChainState",
    "type": "object",
    "required": [
        "severity",
        "_text"
    ],
    "properties": {
        "severity": {
            "description": "0=running, 4=active, 3=initialized, 2=under_construction/stopped/not_initialized",
            "type": "integer"
        },
        "_text": {
            "javaType": "com.sos.joc.model.jobChain.JobChainStateText",
            "type": "string",
            "enum": [
                "NOT_INITIALIZED",
                "INITIALIZED",
                "ACTIVE",
                "UNDER_CONSTRUCTION",
                "STOPPED"
            ]
        }
    }
}