{
    "title": "running task filter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.job.RunningTaskLogFilter",
    "type": "object",
    "required": [
        "controllerId",
        "taskId",
        "eventId"
    ],
    "properties": {
        "controllerId": {
            "type": "string",
            "pattern": "^[^/\\<>?!&:;()\"|*^]*$",
            "maxLength": 100,
            "minLength": 1
        },
        "taskId": {
            "type": "number",
            "format": "utc-millisec",
            "minimum": 0
        },
        "eventId": {
            "type": "number",
            "format": "utc-millisec",
            "minimum": 0
        }
    }
}