{
    "title": "lockConfigurationFilter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.lock.LockConfigurationFilter",
    "type": "object",
    "required": [
        "jobschedulerId",
        "lock"
    ],
    "properties": {
        "jobschedulerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100
        },
        "lock": {
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
            "maxLength": 255
        },
        "mime": {
            "description": "The configuration can have a HTML representation where the HTML gets a highlighting via CSS classes.",
            "javaType": "com.sos.joc.model.common.ConfigurationMime",
            "type": "string",
            "enum": [
                "HTML",
                "XML"
            ],
            "default": "XML"
        }
    }
}