Riot Games · Schema
ParticipantDTO
EsportsGamingLeague of LegendsLegends of RuneterraTeamfight TacticsVALORANT
Properties
| Name | Type | Description |
|---|---|---|
| puuid | string | |
| summonerName | string | |
| championId | integer | |
| championName | string | |
| kills | integer | |
| deaths | integer | |
| assists | integer | |
| totalDamageDealt | integer | |
| goldEarned | integer | |
| win | boolean | |
| teamId | integer | |
| teamPosition | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ParticipantDTO",
"title": "ParticipantDTO",
"type": "object",
"properties": {
"puuid": {
"type": "string"
},
"summonerName": {
"type": "string"
},
"championId": {
"type": "integer"
},
"championName": {
"type": "string"
},
"kills": {
"type": "integer"
},
"deaths": {
"type": "integer"
},
"assists": {
"type": "integer"
},
"totalDamageDealt": {
"type": "integer",
"format": "int64"
},
"goldEarned": {
"type": "integer"
},
"win": {
"type": "boolean"
},
"teamId": {
"type": "integer"
},
"teamPosition": {
"type": "string"
}
}
}