Files
scoreko-dev/schemas/commentary.json
T

24 lines
428 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"leftCommentator": {
"type": "string",
"default": ""
},
"rightCommentator": {
"type": "string",
"default": ""
}
},
"required": [
"leftCommentator",
"rightCommentator"
],
"default": {
"leftCommentator": "",
"rightCommentator": ""
}
}