{
    "$schema": "https:\/\/json-schema.org\/draft\/2020-12\/schema",
    "$id": "https:\/\/www.totalcms.co\/schemas\/svg.json",
    "type": "object",
    "id": "svg",
    "description": "A schema for a Total CMS SVG object",
    "properties": {
        "id": {
            "$ref": "https:\/\/www.totalcms.co\/schemas\/properties\/slug.json",
            "label": "SVG ID",
            "help": "A unique ID for this svg. No spaces or special characters.",
            "field": "id",
            "factory": "slug"
        },
        "svg": {
            "$ref": "https:\/\/www.totalcms.co\/schemas\/properties\/svg.json",
            "label": "SVG",
            "help": "Add in your SVG code here.",
            "field": "svg"
        }
    },
    "required": [
        "id"
    ],
    "index": [
        "id",
        "svg"
    ]
}