expressCart/config/paypalSchema.json

29 lines
581 B
JSON
Raw Normal View History

2018-01-11 06:20:52 +10:00
{
"properties": {
"mode": {
"type": "string",
"enum": ["sandbox", "live"]
},
"client_id": {
"type": "string"
},
"client_secret": {
"type": "string"
},
"paypalCartDescription": {
"type": "string"
},
"paypalCurrency": {
"type": "string"
}
},
"required": [
"mode",
"client_id",
"client_secret",
"paypalCartDescription",
"paypalCurrency"
],
"additionalProperties": false
}