{
    "title": "site_settings",
    "type": "object",
    "properties": {
        "id": {
            "type": "integer",
            "description": "Primary key, auto-increment"
        },
        "key": {
            "type": "string",
            "description": "Settings key (e.g. branding, general, security, notifications, registration, login_page, pricing_layout)"
        },
        "value_json": {
            "type": "string",
            "description": "Stringified JSON of the settings blob"
        }
    },
    "required": [
        "id",
        "key",
        "value_json"
    ]
}