Riot Games · Schema

ChampionMasteryDTO

EsportsGamingLeague of LegendsLegends of RuneterraTeamfight TacticsVALORANT

Properties

Name Type Description
puuid string
championId integer
championLevel integer
championPoints integer
lastPlayTime integer
championPointsSinceLastLevel integer
championPointsUntilNextLevel integer
chestGranted boolean
tokensEarned integer
View JSON Schema on GitHub

JSON Schema

riot-games-championmasterydto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChampionMasteryDTO",
  "title": "ChampionMasteryDTO",
  "type": "object",
  "properties": {
    "puuid": {
      "type": "string"
    },
    "championId": {
      "type": "integer",
      "format": "int64"
    },
    "championLevel": {
      "type": "integer"
    },
    "championPoints": {
      "type": "integer",
      "format": "int64"
    },
    "lastPlayTime": {
      "type": "integer",
      "format": "int64"
    },
    "championPointsSinceLastLevel": {
      "type": "integer",
      "format": "int64"
    },
    "championPointsUntilNextLevel": {
      "type": "integer",
      "format": "int64"
    },
    "chestGranted": {
      "type": "boolean"
    },
    "tokensEarned": {
      "type": "integer"
    }
  }
}