{ "$id": "xpathValues", "title": "Xpath expression and value", "description": "Object containing xpath expression and value", "type": "object", "properties": { "regularErrors": { "type": "array", "items": { "$ref": "#/definitions/xpaths" } }, "regexErrors": { "type": "array", "items": { "$ref": "#/definitions/xpaths" } }, "deletionErrors": { "type": "array", "items": { "$ref": "#/definitions/xpaths" } } }, "required": [ "regularErrors", "regexErrors", "deletionErrors" ], "definitions": { "xpaths": { "description": "Object containing xpath expression and value", "type": "object", "properties": { "xpath": { "type": "string", "examples": [ "/ncs:devices/ncs:device[ncs:name='ios0']/ncs:config/ios:hostname", "/ncs:devices/ncs:device[ncs:name='ios0']/ncs:config/ios:ip/ios:default-gateway", "/ncs:devices/ncs:device[ncs:name='ios0']/ncs:config/ios:version" ] }, "value": { "oneOf": [ { "type": "string", "pattern": "[a-zA-Z]+" }, { "type": "number" }, { "type": "boolean" } ] } }, "required": [ "xpath", "value" ] } } }