{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "https://cloud.ncheck.net/schema/coldef.schema.json",
    "title": "Grid column definition",
    "type": "object",
    "properties": {
        "version": {
            "type": "string"
        },
        "grid": {
            "description": "Default form fields",
            "type": "object",
            "properties": {
                "employee_list": {
                    "type": "object",
                    "properties": {}
                },
                "visitor_list": {
                    "type": "object",
                    "properties": {}
                },
                "employee_group_list": {
                    "type": "object",
                    "properties": {}
                },
                "employee_group_users_list": {
                    "type": "object",
                    "properties": {}
                },
                "employee_group_admin_list": {
                    "type": "object",
                    "properties": {}
                },
                "employee_selection_list": {
                    "type": "object",
                    "properties": {}
                },
                "devices_list": {
                    "type": "object",
                    "properties": {}
                },
                "eventlog_list": {
                    "type": "object",
                    "properties": {}
                }
            },
            "required": ["employee_list", "visitor_list", "employee_group_list", "employee_group_users_list", "employee_group_admin_list", "employee_selection_list", "devices_list", "eventlog_list"]
        }
    },
    "required": ["grid"]
}