{
    "title": "subagentId",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.joc.model.agent.SubAgentId",
    "type": "object",
    "required": [
        "subagentId",
        "priority"
    ],
    "properties": {
        "subagentId": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255,
            "minLength": 1
        },
        "priority": {
            "anyOf": [
                {
                    "type": "integer"
                },
                {
                    "type": "string",
                    "maxLength": 255,
                    "minLength": 1
                }
            ]
        }
    },
    "additionalProperties": false
}