{
    "title": "yade filter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.yade.FileFilter",
    "type": "object",
    "properties": {
        "jobschedulerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100
        },
        "fileId": {
            "type": "number",
            "format": "utc-millisec",
            "minimum": 0
        },
        "compact": {
            "description": "controls if the object view is compact or detailed",
            "type": "boolean",
            "default": false
        },
        "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"
        }
    }
}