Bracket match

One match in a knockout tree: which round it belongs to, who is playing it and who went through.

Properties

roundstring
Name of the bracket round, for example "Quarter-finals" or "Final".
tablenumber
Table number.
playersstring[]
The two player names. Empty while the match is still waiting on an earlier result.
winnerstring | null
Name of the player who went through. Null until the match has been played.
battlestring | null
Battle id to pass to /battles/{id}. Null when no battle was recorded for the match.See Battle

Example

json
{
  "round": "Quarter-finals",
  "table": 1,
  "players": ["Anders Larsson", "Björn Nilsson"],
  "winner": "Anders Larsson",
  "battle": "000b1161c8a864a1f75f"
}