Files
game-tracker/assets/schema.json
2026-01-03 13:19:58 +01:00

99 lines
1.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"players": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"createdAt",
"name"
]
}
},
"groups": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"memberIds": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"id",
"name",
"createdAt",
"memberIds"
]
}
},
"matches": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"groupId": {
"type": "string"
},
"playerIds": {
"type": "array",
"items": {
"type": "string"
}
},
"winnerId": {
"type": "string"
}
},
"required": [
"id",
"name",
"createdAt",
"groupId",
"playerIds",
"winnerId"
]
}
}
},
"required": [
"players",
"groups",
"matches"
]
}