{
    "title": "Documentation content filter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.docu.DocumentationShowFilter",
    "type": "object",
    "required": [
        "controllerId",
        "path",
        "type"
    ],
    "properties": {
        "controllerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100
        },
        "type": {
            "javaType": "com.sos.joc.model.common.JobSchedulerObjectType",
            "type": "string",
            "enum": [
                "INVENTORY",
                "WORKFLOW",
                "JOB",
                "JOBCLASS",
                "AGENTCLUSTER",
                "LOCK",
                "JUNCTION",
                "ORDER",
                "CALENDAR",
                "CONTROLLER",
                "DOCUMENTATION",
                "FOLDER",
                "WORKINGDAYSCALENDAR",
                "NONWORKINGDAYSCALENDAR",
                "OTHER"
            ]
        },
        "path": {
            "description": "absolute path of a JobScheduler object.",
            "type": "string",
            "pattern": "^(/|(/[^/\\<>?:\"|*]+)+)$",
            "maxLength": 255,
            "minLength": 1
        }
    }
}