{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TransactionDto", "type": "object", "properties": { "data": { "type": "string", "description": "Transaction data" }, "to": { "type": "string", "description": "Transaction receiver" }, "from": { "type": "string", "description": "Transaction sender" }, "value": { "type": "string", "description": "Transaction value" } }, "required": [ "data", "to", "from", "value" ] }