45 lines
842 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|