{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ItemLastSale", "type": "object", "properties": { "date": { "type": "string", "format": "date-time" }, "seller": { "$ref": "#/components/schemas/UnionAddress" }, "buyer": { "$ref": "#/components/schemas/UnionAddress" }, "value": { "$ref": "#/components/schemas/BigDecimal" }, "currency": { "$ref": "#/components/schemas/AssetType" }, "price": { "$ref": "#/components/schemas/BigDecimal" } }, "required": [ "date", "from", "to", "value", "currency", "price" ] }