{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ExecuteMsg", "anyOf": [ { "type": "object", "required": [ "buy" ], "properties": { "buy": { "type": "object", "required": [ "cash" ], "properties": { "cash": { "type": "integer", "format": "int32" } } } }, "additionalProperties": false }, { "type": "object", "required": [ "empty" ], "properties": { "empty": { "type": "object" } }, "additionalProperties": false }, { "type": "object", "required": [ "refill" ], "properties": { "refill": { "type": "object", "required": [ "coins" ], "properties": { "coins": { "type": "integer", "format": "int32" } } } }, "additionalProperties": false }, { "type": "object", "required": [ "set" ], "properties": { "set": { "type": "object", "required": [ "price" ], "properties": { "price": { "type": "integer", "format": "int32" } } } }, "additionalProperties": false } ] }