hexo-theme-amane/include/schema/donate/paypal.json

28 lines
676 B
JSON

{
"$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"
]
}