{
    "title": "agent",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.jobscheduler.model.agent.AgentRef",
    "type": "object",
    "required": [
        "name",
        "uri"
    ],
    "properties": {
        "name": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "uri": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "maxProcesses": {
            "type": "integer",
            "minimum": 0
        },
        "title": {
            "type": "string"
        }
    },
    "additionalProperties": false
}