{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Balance", "type": "object", "required": [ "currencyId", "owner", "balance", "decimal" ], "properties": { "currencyId": { "$ref": "#/components/schemas/CurrencyId" }, "owner": { "$ref": "#/components/schemas/UnionAddress" }, "balance": { "$ref": "#/components/schemas/BigInteger" }, "decimal": { "$ref": "#/components/schemas/BigDecimal" } } }