31 lines
960 B
JSON
31 lines
960 B
JSON
{
|
|
"name": "Tennis",
|
|
"outcomes": [
|
|
"Win",
|
|
"Loss",
|
|
"Unfinished"
|
|
],
|
|
"results": [
|
|
{ "name" : "S1", "description" : "1st set" },
|
|
{ "name" : "S2", "description" : "2nd set" },
|
|
{ "name" : "S3", "description" : "3rd set" },
|
|
{ "name" : "S4", "description" : "4th set" },
|
|
{ "name" : "S5", "description" : "5th set" },
|
|
{ "name" : "T", "id" : "points", "description" : "Total points", "primary" : 1 }
|
|
],
|
|
"performance": [
|
|
],
|
|
"columns": [
|
|
{ "name" : "Wins", "equation" : "$win", "description" : "Wins" },
|
|
{ "name" : "Losses", "equation" : "$loss", "description" : "Losses" },
|
|
{ "name" : "Win %", "id" : "winpct", "equation" : "$win / $eventsplayed * 100", "precision" : 2, "description" : "Win percentage", "priority" : 2 },
|
|
{ "name" : "Points", "equation" : "$win * 2 + $loss - $unfinished", "priority" : 1 }
|
|
],
|
|
"metrics": [
|
|
"Height",
|
|
"Weight"
|
|
],
|
|
"statistics": [
|
|
]
|
|
}
|