> For the complete documentation index, see [llms.txt](https://ts-specs.handhistory.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ts-specs.handhistory.org/tournament-finish-object/tournament_finish_obj.md).

# \<tournament\_finish\_obj>

#### tournament\_finish\_obj

Object containing a tournament player's place of finish and winnings.

**Type:** object

**Example:**

Player finished third, and won 10.00:

```javascript
"tournament_finish": {
	"player_name": "My Player 1",
	"finish_position": 3,
	"still_playing": false,
	"prize": 10.00,
	"ticket_value": 0.00
}
```

Player has not yet been eliminated from the tournament:

```javascript
"tournament_finish": {
	"player_name": "My Player 2",
	"still_playing": true,
}
```
