adapter-nso Schemas

On this page:

addDeviceOutput

{ "$id": "addDeviceOutput", "title": "Add Device Return", "description": "Return object from addDevice", "type": "object", "properties": { "code": { "type": "number", "description": "Exit status of the execution of the call", "examples": [ 0 ] }, "value": { "type": "object", "description": "Shows the result of execution of the call", "properties": { "result": { "type": "string", "description": "Add device result", "examples": [ "success", "failure" ] } }, "required": [ "result" ] } }, "required": [ "code", "value" ] }