DSBTournamentHistoryEntryDTO Data Type

A single entry in a player's tournament history, combining the tournament metadata with the player's DWZ evaluation result within that tournament.

Fields

  • tournament – Metadata of the tournament. See DSBTournamentDTO.
  • player – The player's evaluation data within this tournament. See DSBPlayerDTO.

Properties
name data type description
tournament DSBTournamentDTO
player DSBPlayerDTO

Example

{
  "tournament" : {
    "uuid" : "...",
    "label" : "...",
    "vkz" : "...",
    "startdate" : "...",
    "enddate" : "...",
    "processingState" : "PROCESSING",
    "ratingState" : "NOT_RATED",
    "referentFirstname" : "...",
    "referentLastname" : "...",
    "referentEmail" : "...",
    "additionalReferentFirstname" : "...",
    "additionalReferentLastname" : "...",
    "additionalReferentEmail" : "...",
    "location" : "...",
    "url" : "...",
    "lastCalculated" : "...",
    "rounds" : 12345
  },
  "player" : {
    "playerUuid" : "...",
    "nuLigaPersonId" : "...",
    "firstname" : "...",
    "lastname" : "...",
    "birthyear" : 12345,
    "vkz" : "...",
    "memberNo" : 12345,
    "clubName" : "...",
    "fideId" : 12345,
    "playerNo" : 12345,
    "eloPlayer" : true,
    "ratingOld" : 12345,
    "indexOld" : 12345,
    "ratingNew" : 12345,
    "indexNew" : 12345,
    "factorK" : 12345.0,
    "averageRatingCompetitors" : 12345,
    "wins" : 12345.0,
    "numberOfGames" : 12345,
    "winsExpected" : 12345.0,
    "tournamentPerformance" : 12345
  }
}