Add players replicant schema and dashboard CRUD (#5)

* Add players replicant and dashboard CRUD

* Fix players table typing
This commit is contained in:
Pandipipas
2026-02-08 02:05:18 +01:00
committed by GitHub
parent ddb877adf5
commit 5f13143586
6 changed files with 442 additions and 4 deletions
+53
View File
@@ -0,0 +1,53 @@
{
"$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": {}
}