{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "/donate/paypal.json",
    "description": "Paypal donate button configurations",
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "const": "paypal"
        },
        "business": {
            "type": "string",
            "description": "Paypal business ID or email address"
        },
        "currency_code": {
            "type": "string",
            "description": "Currency code",
            "examples": [
                "USD"
            ]
        }
    },
    "required": [
        "type",
        "business",
        "currency_code"
    ]
}