{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/betsolutions/refs/heads/main/json-schema/wallet-api-balance-request-schema.json", "title": "BalanceRequest", "description": "Request body for retrieving a player's wallet balance.", "type": "object", "properties": { "merchantId": { "type": "string", "description": "The merchant's unique identifier.", "example": "merchant-001" }, "playerId": { "type": "string", "description": "The player's unique identifier.", "example": "player-500123" }, "hash": { "type": "string", "description": "SHA-256 hash for request authentication.", "example": "c3d4e5f6..." } }, "required": [ "merchantId", "playerId", "hash" ] }