Open Tournament Summary
  • Overview
  • Guiding Principles
  • JSON Object
  • Storage Format
  • Standardized Tournament Summary
    • The Specification
    • spec_version
    • site_name
    • network_name
    • internal_version
    • tournament_number
    • tournament_name
    • start_date_utc
    • end_date_utc
    • currency
    • buyin_amount
    • fee_amount
    • bounty_fee_amount
    • bounty_value_amount
    • initial_stack
    • type
    • flags
    • speed
    • prize_pool
    • hero_player_name
    • player_count
    • tournament_finishes_and_winnings
    • rebuy_cost
    • addon_cost
    • tournament_rebuys
  • speed object
    • <speed_object>
    • type
    • round_time
  • Tournament Finish Object
    • <tournament_finish_obj>
    • player_name
    • finish_position
    • still_playing
    • prize
    • ticket_value
  • TOURNAMENT REBUY OBJECT
    • <tournament_rebuy_obj>
    • player_name
    • rebuys
    • addons
  • String Formats
    • version_string
  • Examples
    • Sample Sit N' Go
    • More coming soon.
  • Contact Us
    • Change Request Process
    • Support
  • CHANGE LOG
    • Change Log
Powered by GitBook
On this page

Was this helpful?

  1. TOURNAMENT REBUY OBJECT

<tournament_rebuy_obj>

An object defining tournament re-buys or re-entries, and add-ons.

tournament_rebuy

An object defining the number of re-buys or re-entries, and add-ons, made by one player in the tournament.

There should be one of this object for each player who made any rebuys, re-entries or add-ons in the tournament.

A tournament can only be a rebuy or a re-entry. The "rebuys" field below specifies the number or rebuys or re-entries as appropriate to the type of tournament.

If a player paid a multiple of the cost to receive a multiple of the amount of chips then this should be specified as multiple rebuys/re-entries/add-ons.

Type: object

Structure:

{ "player_name": string, "rebuys": integer, "addons": integer }

Example:

Player made 2 rebuys and 1 add-on.

{ "player_name": "bot_name", "rebuys": 2, "addons": 1 }

Previousticket_valueNextplayer_name

Last updated 2 years ago

Was this helpful?