Sha256: 6178cf6cd6c6d5676cc7e5f0227a266cbc70410f6fa72be2d12f81c57693258a

Contents?: true

Size: 1.23 KB

Versions: 2

Compression:

Stored size: 1.23 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"
                    },
                    "content": {
                        "type": "object",
                        "additionalProperties": {}
                    }
                },
                "required": [
                    "key",
                    "name",
                    "content"
                ]
            }
        }
    },
    "required": [
        "solaraVersion",
        "brand",
        "configurations"
    ]
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
solara-0.6.0 solara/lib/core/doctor/schema/brand_configurations.json
solara-0.5.0 solara/lib/core/doctor/schema/brand_configurations.json