{
    "$schema": "https:\/\/json-schema.org\/draft\/2020-12\/schema",
    "$id": "https:\/\/www.totalcms.co\/schemas\/toggle.json",
    "type": "object",
    "id": "toggle",
    "description": "A schema for a Total CMS Toggle object",
    "properties": {
        "id": {
            "$ref": "https:\/\/www.totalcms.co\/schemas\/properties\/slug.json",
            "label": "Toggle ID",
            "help": "A unique ID for this toggle. No spaces or special characters.",
            "field": "id",
            "factory": "slug"
        },
        "status": {
            "type": "boolean",
            "label": "Toggle",
            "help": "Click to toggle the status.",
            "field": "toggle"
        }
    },
    "required": [
        "id"
    ],
    "index": [
        "id",
        "status"
    ]
}