{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "SwapResponse", "description": "SwapResponse is data format returned from SwapRequest::Simulate query", "type": "object", "required": [ "receive" ], "properties": { "receive": { "$ref": "#/definitions/Coin" } }, "definitions": { "Coin": { "type": "object", "required": [ "amount", "denom" ], "properties": { "amount": { "$ref": "#/definitions/Uint128" }, "denom": { "type": "string" } } }, "Uint128": { "type": "string" } } }