app-automation_studio Schemas

On this page:

templateUpdate

{ "$id": "templateUpdate", "title": "Template Update", "description": "An entity representing an update to an existing template document.", "type": "object", "properties": { "name": { "type": "string", "examples": [ "test" ], "minLength": 1 }, "group": { "type": "string", "examples": [ "Sample group" ], "minLength": 1 }, "command": { "type": "string", "examples": [ "show ip br" ], "minLength": 1 }, "description": { "type": "string", "examples": [ "description" ], "minLength": 1 }, "template": { "type": "string", "examples": [ "Value FIRST_WORD (S+)\n\nStart\n ^FIRST_WORD.* -> Record" ], "minLength": 1 }, "data": { "type": "string", "examples": [ "some sample text to match against" ], "minLength": 1 }, "type": { "type": "string", "examples": [ "test" ], "enum": [ "textfsm", "jinja2" ] } }, "required": [ "name", "group", "command", "description", "template", "data", "type" ], "additionalProperties": false }