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