{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "/donate/buymeacoffee.json",
    "description": "\"Buy me a coffee\" donate button configurations",
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "const": "buymeacoffee"
        },
        "url": {
            "type": "string",
            "description": "URL to the \"Buy me a coffee\" page"
        }
    },
    "required": [
        "type",
        "url"
    ]
}