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