{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "RedeemSyResponse", "type": "object", "properties": { "method": { "type": "string", "description": "Method name" }, "contractCallParamsName": { "description": "Contract call parameters name", "type": "array", "items": { "type": "string" } }, "contractCallParams": { "description": "Contract call parameters", "type": "array", "items": { "type": "array" } }, "tx": { "description": "Transaction data", "allOf": [ { "$ref": "#/components/schemas/TransactionDto" } ] }, "tokenApprovals": { "type": "array", "items": { "$ref": "#/components/schemas/TokenAmountResponse" } }, "data": { "$ref": "#/components/schemas/RedeemSyData" } }, "required": [ "method", "contractCallParamsName", "contractCallParams", "tx", "data" ] }