{
    "title": "agents filter",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.jobscheduler.AgentFilter",
    "type": "object",
    "required": [
        "jobschedulerId"
    ],
    "properties": {
        "jobschedulerId": {
            "type": "string",
            "pattern": "^[^/\\<>?:\"|*]*$",
            "maxLength": 100
        },
        "agents": {
            "type": "array",
            "items": {
                "javaType": "com.sos.joc.model.jobscheduler.AgentUrl",
                "type": "object",
                "properties": {
                    "agent": {
                        "description": "Url of an Agent",
                        "type": "string",
                        "pattern": "^https?://.+$"
                    }
                }
            }
        }
    }
}