Riot Games · Schema

CurrentGameInfoDTO

EsportsGamingLeague of LegendsLegends of RuneterraTeamfight TacticsVALORANT

Properties

Name Type Description
gameId integer
gameType string
gameStartTime integer
mapId integer
gameLength integer
platformId string
gameMode string
gameQueueConfigId integer
participants array
View JSON Schema on GitHub

JSON Schema

riot-games-currentgameinfodto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CurrentGameInfoDTO",
  "title": "CurrentGameInfoDTO",
  "type": "object",
  "properties": {
    "gameId": {
      "type": "integer",
      "format": "int64"
    },
    "gameType": {
      "type": "string"
    },
    "gameStartTime": {
      "type": "integer",
      "format": "int64"
    },
    "mapId": {
      "type": "integer",
      "format": "int64"
    },
    "gameLength": {
      "type": "integer",
      "format": "int64"
    },
    "platformId": {
      "type": "string"
    },
    "gameMode": {
      "type": "string"
    },
    "gameQueueConfigId": {
      "type": "integer",
      "format": "int64"
    },
    "participants": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CurrentGameParticipantDTO"
      }
    }
  }
}