mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 03:32:06 +00:00
Add players replicant schema and dashboard CRUD (#5)
* Add players replicant and dashboard CRUD * Fix players table typing
This commit is contained in:
@@ -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": {}
|
||||
}
|
||||
Reference in New Issue
Block a user