Riot Games · Schema

LeagueEntryDTO

EsportsGamingLeague of LegendsLegends of RuneterraTeamfight TacticsVALORANT

Properties

Name Type Description
leagueId string
summonerId string
summonerName string
queueType string
tier string
rank string
leaguePoints integer
wins integer
losses integer
hotStreak boolean
veteran boolean
freshBlood boolean
inactive boolean
View JSON Schema on GitHub

JSON Schema

riot-games-leagueentrydto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LeagueEntryDTO",
  "title": "LeagueEntryDTO",
  "type": "object",
  "properties": {
    "leagueId": {
      "type": "string"
    },
    "summonerId": {
      "type": "string"
    },
    "summonerName": {
      "type": "string"
    },
    "queueType": {
      "type": "string"
    },
    "tier": {
      "type": "string"
    },
    "rank": {
      "type": "string"
    },
    "leaguePoints": {
      "type": "integer"
    },
    "wins": {
      "type": "integer"
    },
    "losses": {
      "type": "integer"
    },
    "hotStreak": {
      "type": "boolean"
    },
    "veteran": {
      "type": "boolean"
    },
    "freshBlood": {
      "type": "boolean"
    },
    "inactive": {
      "type": "boolean"
    }
  }
}