{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "/donate/wechat.json",
    "description": "Wechat donate button configurations",
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "const": "wechat"
        },
        "qrcode": {
            "type": "string",
            "description": "Wechat qrcode image URL"
        }
    },
    "required": [
        "type",
        "qrcode"
    ]
}