{ "$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" } } }