{
    "title": "jobConfigurationFilter",
    "id": "schemas/job/jobConfigurationFilter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.job.JobConfigurationFilter",
    "type": "object",
    "required": [
        "jobschedulerId",
        "job"
    ],
    "properties": {
        "jobschedulerId": {
            "type": "string"
        },
        "job": {
            "id": "schemas/common/path",
            "description": "absolute path based on live folder of a JobScheduler object.",
            "type": "string",
            "pattern": "/([^/]+/)*[^/]+"
        },
        "mime": {
            "id": "schemas/common/configurationMimeFilter",
            "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"
        }
    }
}