Files
scoreko-dev/schemas/players.json
T
Pandipipas 5f13143586 Add players replicant schema and dashboard CRUD (#5)
* Add players replicant and dashboard CRUD

* Fix players table typing
2026-02-08 02:05:18 +01:00

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": {}
}