BetSolutions · Schema

GameListResponse

Response containing available games and product metadata.

BettingCasinosGamingGamblingSlotsSports Betting

Properties

Name Type Description
success boolean Whether the request succeeded.
products array Array of available game products.
View JSON Schema on GitHub

JSON Schema

betsolutions-gamelistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GameListResponse",
  "title": "GameListResponse",
  "type": "object",
  "description": "Response containing available games and product metadata.",
  "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"
      }
    }
  }
}