adapter-nso Schemas

On this page:

applyTemplatesInput

{ "$id": "applyTemplatesInput", "title": "Apply Templates", "description": "Input object for the applyTemplates call", "type": "array", "items": { "type": "object", "properties": { "device": { "type": "string", "description": "Device name" }, "template": { "type": "string", "description": "Template name" }, "variables": { "$ref": "#/definitions/keyValueMap" } }, "required": [ "device", "template" ] }, "definitions": { "keyValueMap": { "type": "object", "description": "Template Variables", "patternProperties": { "[a-zA-Z]+": { "anyOf": [ { "type": "number" }, { "type": "string" }, { "type": "boolean" } ] } } } } }