mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 03:32:06 +00:00
5f13143586
* Add players replicant and dashboard CRUD * Fix players table typing
54 lines
973 B
JSON
54 lines
973 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"gamertag": {
|
|
"type": "string",
|
|
"default": ""
|
|
},
|
|
"team": {
|
|
"type": "string",
|
|
"default": ""
|
|
},
|
|
"country": {
|
|
"type": "string",
|
|
"default": ""
|
|
},
|
|
"twitter": {
|
|
"type": "string",
|
|
"default": ""
|
|
},
|
|
"realName": {
|
|
"type": "string",
|
|
"default": ""
|
|
},
|
|
"pronouns": {
|
|
"type": "string",
|
|
"default": ""
|
|
},
|
|
"twitch": {
|
|
"type": "string",
|
|
"default": ""
|
|
},
|
|
"notes": {
|
|
"type": "string",
|
|
"default": ""
|
|
}
|
|
},
|
|
"required": [
|
|
"gamertag",
|
|
"team",
|
|
"country",
|
|
"twitter",
|
|
"realName",
|
|
"pronouns",
|
|
"twitch",
|
|
"notes"
|
|
]
|
|
},
|
|
"default": {}
|
|
}
|