{
    "title": "check custom event",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.event.custom.CheckEvent",
    "type": "object",
    "properties": {
        "jobschedulerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100
        },
        "eventClass": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "eventId": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "exitCode": {
            "type": "integer",
            "minimum": 0
        },
        "xPath": {
            "type": "string",
            "pattern": "^[^<>]*$"
        }
    }
}