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. Examples

Sample Sit N' Go

{
  "ots": {
    "spec_version": "1.1.3",
    "site_name": "Anicka Poker",
    "network_name": "Anicka Poker",
    "internal_version": "1.0.3",
    "tournament_number": "1000001",
    "tournament_name": "$20 SNG",
    "start_date_utc": "2017-12-31T09:45:26Z",
    "end_date_utc": "2017-12-31T09:55:26Z",
    "currency": "USD",
    "buyin_amount": 20.00,
    "fee_amount": 2.00,
    "initial_stack": 1500,
    "type": "STT",
    "flags": [
        "SNG"
    ],
    "speed": {
        "type": "Normal",
        "round_time": 600
      },
    "prize_pool": 120,
    "hero_player_name": "My Player 2",
    "player_count": 6,
    "tournament_finishes_and_winnings": [
      {
        "player_name": "My player 1",
        "finish_position": 1,
        "still_playing": false,
        "prize": 60.00,
        "ticket_value": 0.00
      },
      {
        "player_name": "My player 2",
        "finish_position": 2,
        "still_playing": false,
        "prize": 35.00,
        "ticket_value": 0.00
      },
      {
        "player_name": "My player 3",
        "finish_position": 3,
        "still_playing": false,
        "prize": 25.00,
        "ticket_value": 0.00
      },
      {
        "player_name": "My player 4",
        "finish_position": 4,
        "still_playing": false,
        "prize": 0.00,
        "ticket_value": 0.00
      },
      {
        "player_name": "My player 5",
        "finish_position": 5,
        "still_playing": false,
        "prize": 0.00,
        "ticket_value": 0.00
      },
      {
        "player_name": "My player 6",
        "finish_position": 6,
        "still_playing": false,
        "prize": 0.00,
        "ticket_value": 0.00
      }
    ]
  }
}
Previousversion_stringNextMore coming soon.

Last updated 3 years ago

Was this helpful?