{
    "title": "agent",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.controller.model.agent.AgentRef",
    "type": "object",
    "required": [
        "id",
        "director"
    ],
    "properties": {
        "id": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255
        },
        "director": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255,
            "minLength": 1
        },
        "standbyDirector": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255,
            "minLength": 1
        }
    },
    "additionalProperties": false
}