Sha256: 5ef5880b546db778a16d14c4a09ecaf93a7e96ff33d2165d74a1ad743c562bc5
Contents?: true
Size: 1.49 KB
Versions: 8
Compression:
Stored size: 1.49 KB
Contents
{ "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" }, "inputType": { "type": "string", "enum": [ "color", "text" ] }, "content": { "type": "object", "additionalProperties": {} } }, "required": [ "key", "name", "inputType", "content" ] } } }, "required": [ "solaraVersion", "brand", "configurations" ] }
Version data entries
8 entries across 8 versions & 1 rubygems