{
    "$schema": "https:\/\/json-schema.org\/draft\/2020-12\/schema",
    "$id": "https:\/\/www.totalcms.co\/schemas\/color.json",
    "type": "object",
    "id": "color",
    "description": "A schema for a Total CMS Color object",
    "properties": {
        "id": {
            "$ref": "https:\/\/www.totalcms.co\/schemas\/properties\/slug.json",
            "label": "Color ID",
            "help": "A unique ID for this color. No spaces or special characters.",
            "field": "id",
            "factory": "slug"
        },
        "color": {
            "$ref": "https:\/\/www.totalcms.co\/schemas\/properties\/color.json",
            "label": "Color",
            "help": "The color to use.",
            "field": "color",
            "factory": "hexColor",
            "default": "#ffffff"
        }
    },
    "required": [
        "id",
        "color"
    ],
    "index": [
        "id",
        "color"
    ]
}