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