{ "type": "object", "required": true, "properties": { "global": { "type": "object", "properties": { "settings": { "type": "object", "required": true, "additionalProperties": { "type": [ "object", "array" ], "properties": {}, "additionalProperties": true } }, "uuid": { "type": "string", "format": "uuid", "required": false } } }, "instanceIds": { "type": "array", "required": false, "items": { "type": "integer" }, "minItems": 1 }, "instances": { "type": "array", "required": false, "items": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "id": { "type": "integer", "minimum": 0, "maximum": 255 }, "name": { "type": "string", "minLength": 5 }, "settings": { "type": "object", "required": true, "additionalProperties": { "type": [ "object", "array" ], "properties": {}, "additionalProperties": true } } } } } }, "additionalProperties": true }