app-template_builder Schemas

On this page:

templatesResults

{ "$id": "templatesResults", "title": "templatesResults", "description": "A an array of all templates and an array of all device names", "type": "object", "properties": { "templates": { "type": "array", "items": { "$ref": "templateDocument" } }, "devices": { "type": "array", "items": { "$ref": "#/definitions/deviceEntry" } } }, "definitions": { "deviceEntry": { "type": "object", "properties": { "name": { "type": "string", "examples": [ "device1" ] }, "id": { "type": "string", "examples": [ "device1" ] } } } } }