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