OBJECT
CompetitionOrganizerCapability
The features a user has access to when creating a competition with the Versus product.
link GraphQL Schema definition
1 type CompetitionOrganizerCapability { 2 3 # The features a user available to them when they are a Competition Organizer. 4 # null or [] mean no special permissions are given to this user. 5 : [RegistrationType!] 6 7 # Can this user upload or attach additional terms of service for a competition. 8 : Boolean 9 10 # Can this user create competitions in Versus. 11 : Boolean 12 13 # Can this user change participant statuses (invited -> registered) without 14 # participant consent. 15 : Boolean 16 17 # Can this user host a Custom Format competition. 18 : Boolean 19 20 }