mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 11:42:06 +00:00
36 lines
725 B
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": ""
|
|
}
|
|
}
|