Type Definitions
-
Adjudicator
-
Represents an adjudicator.
-
Institution
-
Represents an institution.
-
RawAdjudicatorResult
-
Represents raw adjudicator result.
- Source:
Properties:
Name Type Description id
Number id of the adjudicator to evaluate
from_id
Number id of the sender
r
Number round number at which the result is sent
score
Number the score of the adjudicator the sender writes
watched_teams
Array.<Number> teams the adjudicator watched
comment
String the comment for the adjudicator from the sender
user_defined_data
Object user defined data
-
RawDebaterResult
-
Represents raw debater result.
- Source:
Properties:
Name Type Description id
Number id of the debater to evaluate
from_id
Number id of the sender
r
Number round number at which the result is sent
scores
Array.<Number> scores the sender writes
user_defined_data
Object user defined data
Example
{ id: 1, from_id: 2, r: 1, scores: [75, 0, 36.5] }
-
RawTeamResult
-
Represents raw team result.
- Source:
Properties:
Name Type Description id
Number id of the team to evaluate
from_id
Number id of the sender
r
Number round number at which the result is sent
win
Number in NA it's either 1(win) or 0(lose), in BP it's the win-points
opponents
Array.<Number> opponents of the team
side
String side of the team
user_defined_data
Object user defined data
Example
{ id: 1, from_id: 2, r: 1, win: 1, opponents: [2], side: "gov" }
-
Square
-
Represents a pair/set of teams in a venue. A minimum unit to be an allocation.
- Source:
Properties:
Name Type Description id
Number id of the Square
teams
Array.<Number> teams in the Square
chairs
Array.<Number> chairs in the Square
panels
Array.<Number> adjudicators(panels) in the Square
trainees
Array.<Number> adjudicators(trainees) in the Square
warnings
Array.<String> warnings
venue
Number -
Style
-
Represents debate style.
- Source:
Properties:
Name Type Description name
String style name
debater_num_per_team
Number number of debaters per team
team_num
Number number of team in a Square
score_weights
Array.<Number> weights of the scores
replies
Number candidates of replies (Necessary only for testing)
reply_num
Number number of replies in a Square (Necessary only for testing)
Example
{ name: "ASIAN", debater_num_per_team: 3, team_num: 2, score_weights: [1, 1, 1, 0.5], replies: [0, 1], reply_num: 1 }
-
Team
-
Represents a team.
-
TournamentInformation
-
Represents a tournament.
-
Venue
-
Represents a venue.