At a quick read through it looks good. Pleased to see "withdrew" in there; TDs don't like players who withdraw. (Although I have, and others have: better to withdraw than timeout if Real Life is sucking time.)
RFC: Tournament data

Breaking change: please note that we have decided to redesign the Tournaments endpoints in order to not duplicate data or have to invalidate cache too often.
The "rounds" endpoint will show only the list of groups related to that round, and every group will show the list of games. The player's list of a group can be inferred by getting player's info of each game.

The final draft of tournament's endpoints has been added in documentation. Feel free to continue use this thread for any new idea or suggestion (or bugs, of course!).
This Request For Comments covers a new set of endpoints to provide information about tournaments, tournaments' rounds and participants.
Tournaments will be referenced by their "url" value, which is the unique string used for their URL on the website.
/pub/tournament/{url}
This endpoint should provide all relevant information related to a specific tournament rules and stats:
Updates: when a tournament status changes or a tournament's round ends
/pub/tournament/{url}/{round}
This endpoint should provide all relevant information related to a specific round stats:
Updates: when a tournament's round ends
/pub/tournament/{url}/{round}/{group}
This endpoint should provide all relevant information related to a specific round's group stats:
Updates: when a game updates
/pub/player/{username}/tournaments
This endpoint should provide all relevant information related to which tournaments a player has attended:
Updates: when a tournament status changes
Does this endpoint get you what's needed for your? Are there related data we missed that are essential? If possible, please include specific examples of how you intend to use the data, especially if you request that we change this output in some way.