{
    "title": "schedule state",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.schedule.ScheduleState",
    "type": "object",
    "required": [
        "severity",
        "_text"
    ],
    "properties": {
        "severity": {
            "description": "0=active; 1=inactive",
            "type": "integer"
        },
        "_text": {
            "javaType": "com.sos.joc.model.schedule.ScheduleStateText",
            "type": "string",
            "enum": [
                "ACTIVE",
                "INACTIVE",
                "UNKNOWN"
            ]
        }
    }
}