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