lamassu-server/schema.json
2016-12-01 17:46:18 +02:00

45 lines
842 B
JSON

{
"definitions": {
"cashOutEnabledTrue": {
"properties": {
"#/machine/cashOutEnabled": {
"constant": true
}
}
},
"cashOutEnabledDepencies": {
"allOf": [
{
"$ref": "#/definitions/cashOutEnabledTrue"
}
]
}
},
"type": "object",
"properties": {
"commissions": {
"type": "object",
"properties": {
"cashInCommission": {
"type": "number",
"minimum": 0
},
"cashOutCommission": {
"type": "number",
"minimum": 0
}
},
"allOf": [
{ "$ref": "#/definitions/cashOutEnabledDepencies" }
]
},
"machine": {
"type": "object",
"properties": {
"cashOutEnabled": {
"type": "boolean"
}
}
}
}
}