Files
scoreko-dev/schemas/commentary.json

36 lines
725 B
JSON

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