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