{
    "$schema": "https:\/\/json-schema.org\/draft\/2020-12\/schema",
    "$id": "https:\/\/www.totalcms.co\/schemas\/custom\/team.json",
    "type": "object",
    "id": "team",
    "description": "Schema f\u00fcr ein OpenLeagueDB Team",
    "properties": {
        "teamid": {
            "type": "string",
            "field": "text",
            "placeholder": "TeamId:"
        },
        "teamname": {
            "type": "string",
            "field": "text",
            "label": "Teamname:"
        },
        "teamiconurl": {
            "type": "string",
            "field": "text",
            "label": "Logo"
        },
        "shortname": {
            "type": "string",
            "field": "text",
            "label": "Shortname:"
        },
        "teamgroupname": {
            "type": "string",
            "field": "text",
            "label": "TeamGroupName:"
        },
        "id": {
            "field": "text",
            "settings": {
                "autogen": "${teamid}"
            },
            "$ref": "https:\/\/www.totalcms.co\/schemas\/properties\/slug.json"
        }
    },
    "required": [
        "id",
        "teamid"
    ],
    "index": [
        "id",
        "teamid",
        "teamname",
        "teamiconurl",
        "shortname",
        "teamgroupname"
    ],
    "formgrid": "id\nteamid\nteamname\nshortname\nteamiconurl\nteamgroupname",
    "category": "OpenLeagueDB"
}