View model of a player and their DWZ evaluation result within a tournament.
The calculated values are given as numbers. Beside them the …DisplayString fields carry the
very entry the Wertungsportal shows for the same value (SPS-34130): depending on the kind of player an
entry may be empty, bracketed, combined with the coefficient index or the literal Erstdaten.
Rendering those strings reproduces the evaluation display of the portal exactly.
Told apart by member and eloPlayer:
rating - index.ratingOld, indexOld,
ratingNew, indexNew, birthyear and fideId are withheld from
them.The entries of the evaluation display, absent wherever the display leaves the column empty. Absent
fields are omitted from the response rather than sent as null.
1400 - 10 for members, the
Elo rating for Elo players, bracketed for textual players.1420 - 11 for members,
bracketed and without an index for textual players, Erstdaten for members who are still
collecting their first rating, empty for Elo players who are not members. Erstdaten is
reported where a player is the subject of an evaluation; where they appear as a participant of a
game, the entry stays empty, just as the opponent column of the display leaves it empty.| name | data type | description |
|---|---|---|
| playerUuid | string | |
| nuLigaPersonId | string | |
| firstname | string | |
| lastname | string | |
| birthyear | number | |
| vkz | string | |
| memberNo | number | |
| clubName | string | |
| fideId | number | |
| playerNo | number | |
| eloPlayer | boolean | |
| member | boolean | |
| ratingOld | number | |
| indexOld | number | |
| ratingNew | number | |
| indexNew | number | |
| ratingOldDisplayString | string | |
| ratingNewDisplayString | string | |
| factorKDisplayString | string | |
| winsExpectedDisplayString | string | |
| ratingDifference | number | |
| factorK | number | |
| averageRatingCompetitors | number | |
| wins | number | |
| numberOfGames | number | |
| winsExpected | number | |
| tournamentPerformance | number |
Example
{
"playerUuid" : "...",
"nuLigaPersonId" : "...",
"firstname" : "...",
"lastname" : "...",
"birthyear" : 12345,
"vkz" : "...",
"memberNo" : 12345,
"clubName" : "...",
"fideId" : 12345,
"playerNo" : 12345,
"eloPlayer" : true,
"member" : true,
"ratingOld" : 12345,
"indexOld" : 12345,
"ratingNew" : 12345,
"indexNew" : 12345,
"ratingOldDisplayString" : "...",
"ratingNewDisplayString" : "...",
"factorKDisplayString" : "...",
"winsExpectedDisplayString" : "...",
"ratingDifference" : 12345,
"factorK" : 12345.0,
"averageRatingCompetitors" : 12345,
"wins" : 12345.0,
"numberOfGames" : 12345,
"winsExpected" : 12345.0,
"tournamentPerformance" : 12345
}