{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/betsolutions/refs/heads/main/json-schema/wallet-api-auth-response-schema.json", "title": "AuthResponse", "description": "Authentication response with private player token.", "type": "object", "properties": { "success": { "type": "boolean", "description": "Whether authentication succeeded.", "example": true }, "token": { "type": "string", "description": "Private player token for subsequent API calls.", "example": "priv-token-xyz789" }, "playerId": { "type": "string", "description": "Unique player identifier.", "example": "player-500123" } } }