# flags

#### flags

Descriptive properties of the tournament.

**Nullable:** true

{% hint style="info" %}
If the tournament does not have any flags this can be omitted, null or an empty array.
{% endhint %}

**Type:** array of strings

**Options:**

* "SNG": Sit 'N Go.
* "DON": Double or nothing.  Half of the players win double their buy-in and half win nothing.
* "Bounty": Bounty.  Players are awarded prizes for knocking out specific players.
* "Shootout": A multi-table tournament played in stages where each table plays until one player remains, with the winners moving on to the next phase.
* "Rebuy": Players are offered the opportunity to rebuy stacks of chips. There are various forms of this that include timed or when a player is felted, or a maximum number of rebuys. Rebuy tournaments where the only option for rebuy comes as the player is felted should be flagged as "Re-Entry" instead of rebuy tournaments.
* "Matrix": One buyin is split between multiple games.  Some of the prize pool is awarded for each game while another portion is awarded for the aggregate total placing between the games.
* "Push\_Or\_Fold": For every hand you are required to fold or push all-in.
* "Satellite": Prize includes entry into another tournament.
* "Steps": Steps tournament where players incrementally gain seats to additional tournaments of greater value.
* "Deep": Deep stack tournament.  Starting stacks are more big blinds than a normal tournament starting stack.
* "Multi-Entry": Players can have more than a single entry into the same tournament.  It is not synonymous with rebuy tournaments, but rather includes tournaments where a player can have more than a single entry at the beginning of the tournament.
* "Fifty50": Fifty fifty.  Fifty percent of players win a prize.  All winners are awarded the same base prize plus an amount based on the number of chips remaining in the player's stack when half of the players have been eliminated.
* "Flipout": Players' hands are all played face up without betting rounds.
* "TripleUp": A third of the players win three times their buy-in and the remaining players win nothing.
* "Lottery": Fast action games with accelerated blind level timings and shorter stacks. The prize is randomly chosen before the game begins.
* "Re-Entry": A player can re-enter a tournament after they are felted.
* "Power\_Up": Three person game with special "powers" that are not typically possible in table games.
* "Progressive-Bounty": Same as bounty tournaments except that bounty winning amounts can vary.  Usually half of the bounty amount goes to the hand winner and the other half of the bounty is added to the winner's bounty.

{% hint style="info" %}
If your site/network offers a type of tournament that cannot be properly identified via one of the above flags then please see the [Change Request Process](/contact-us/change-request-process.md) to learn how to submit your request to include the flag in the specification at which point, once approved, it will get included and the specification version will be increased.
{% endhint %}

**Example:**

Fifty, fifty sit 'n go.

```javascript
"flags": [
    "SNG",
    "Fifty50"
]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hh-specs.handhistory.org/tournament-info-object/tournament_info_obj/flags.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
