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

25 lines
612 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"
}
},
"required": [
"type",
"business",
"currencyCode"
]
}