{
    "title": "reset agent",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "javaType": "com.sos.controller.model.command.ResetAgent",
    "type": "object",
    "extends": {
        "javaType": "Command"
    },
    "propertyOrder": [
        "TYPE",
        "agentName"
    ],
    "properties": {
        "agentName": {
            "type": "string",
            "pattern": "^[^<>]*$",
            "maxLength": 255,
            "minLength": 1
        }
    },
    "additionalProperties": false
}