Riot Games · Schema

SummonerDTO

EsportsGamingLeague of LegendsLegends of RuneterraTeamfight TacticsVALORANT

Properties

Name Type Description
id string Encrypted summoner ID
accountId string Encrypted account ID
puuid string Encrypted PUUID
name string Summoner name (deprecated)
profileIconId integer
revisionDate integer
summonerLevel integer
View JSON Schema on GitHub

JSON Schema

riot-games-summonerdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SummonerDTO",
  "title": "SummonerDTO",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Encrypted summoner ID"
    },
    "accountId": {
      "type": "string",
      "description": "Encrypted account ID"
    },
    "puuid": {
      "type": "string",
      "description": "Encrypted PUUID"
    },
    "name": {
      "type": "string",
      "description": "Summoner name (deprecated)"
    },
    "profileIconId": {
      "type": "integer"
    },
    "revisionDate": {
      "type": "integer",
      "format": "int64"
    },
    "summonerLevel": {
      "type": "integer",
      "format": "int64"
    }
  }
}