Response containing available games and product metadata.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/betsolutions/refs/heads/main/json-schema/wallet-api-game-list-response-schema.json", "title": "GameListResponse", "description": "Response containing available games and product metadata.", "type": "object", "properties": { "success": { "type": "boolean", "description": "Whether the request succeeded.", "example": true }, "products": { "type": "array", "description": "Array of available game products.", "items": { "$ref": "#/components/schemas/Game" } } } }