{ "title": "Brand Configurations Schema", "type": "object", "properties": { "solaraVersion": { "type": "string" }, "brand": { "type": "object", "properties": { "key": { "type": "string" }, "name": { "type": "string" } }, "required": [ "key", "name" ] }, "configurations": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string" }, "name": { "type": "string" }, "content": { "type": "object", "additionalProperties": {} } }, "required": [ "key", "name", "content" ] } } }, "required": [ "solaraVersion", "brand", "configurations" ] }