{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TokenAmountDto", "type": "object", "properties": { "token": { "type": "string", "description": "Token address" }, "amount": { "type": "string", "description": "Token amount in wei" } }, "required": [ "token", "amount" ] }