{
    "title": "task filter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.job.TaskFilter",
    "type": "object",
    "required": [
        "jobschedulerId"
    ],
    "properties": {
        "jobschedulerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100
        },
        "taskId": {
            "type": "string",
            "pattern": "^\\d+$"
        },
        "filename": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 255
        },
        "mime": {
            "description": "The log can have a HTML representation where the HTML gets a highlighting via CSS classes.",
            "javaType": "com.sos.joc.model.common.LogMime",
            "type": "string",
            "enum": [
                "PLAIN",
                "HTML"
            ],
            "default": "PLAIN"
        }
    }
}