MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
Showing only changes of commit 45650133a7 - Show all commits

View File

@@ -1,5 +1,3 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
@@ -20,15 +18,78 @@
"type": "string"
},
"players": {
"type": "object"
},
"group": {
"type": "object"
},
"winner": {
"type": "string"
"type": [
"object",
"null"
],
"properties": {
"id": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"createdAt",
"name"
]
}
},
"group": {
"type": [
"object",
"null"
],
"properties": {
"id": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"name": {
"type": "string"
},
"members": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"createdAt",
"name"
]
}
]
}
},
"required": [
"id",
"createdAt",
"name",
"members"
]
},
"winner": {
"type": "string"
},
"required": [
"id",
"createdAt",
@@ -91,7 +152,10 @@
"type": "array",
"items": [
{
"type": "object",
"type": [
"object",
"null"
],
"properties": {
"id": {
"type": "string"