{
    "title": "Out-Condition-Event",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "Out Condition Event",
    "javaType": "com.sos.joc.model.jobstreams.OutConditionEvent",
    "type": "object",
    "properties": {
        "id": {
            "type": "number",
            "format": "utc-millisec",
            "minimum": 0
        },
        "command": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "event": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "exists": {
            "type": "boolean"
        },
        "globalEvent": {
            "type": "boolean"
        },
        "existsInJobStream": {
            "type": "boolean"
        },
        "jobStream": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        }
    }
}