{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "RewardsByBlockchain", "type": "object", "description": "List of rewards by blockchain for a specific address", "properties": { "rewards": { "type": "array", "description": "List of reward entities for each blockchain", "items": { "$ref": "#/components/schemas/RewardByBlockchainEntity" } } }, "required": [ "rewards" ], "example": { "rewards": [ { "rewardWallet": "ETHEREUM:0x1234567890123456789012345678901234567890", "points": "1200", "rank": 5, "blockchain": "ETHEREUM" }, { "rewardWallet": "ETHEREUM:0x1234567890123456789012345678901234567890", "points": "300", "rank": 15, "blockchain": "POLYGON" } ] } }