{
    "title": "task filter",
    "id": "schemas/job/taskFilter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.job.TaskFilter",
    "type": "object",
    "required": [
        "jobschedulerId",
        "taskId"
    ],
    "properties": {
        "jobschedulerId": {
            "type": "string"
        },
        "taskId": {
            "type": "string"
        },
        "filename": {
            "type": "string"
        },
        "mime": {
            "id": "schemas/common/logMimeFilter",
            "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"
        }
    }
}