Updated schema to add scores attribute
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 46s
Pull Request Pipeline / lint (pull_request) Successful in 49s

This commit is contained in:
2026-04-12 01:42:02 +02:00
parent f40113ef2c
commit 65704b4a03

View File

@@ -161,6 +161,26 @@
"type": "string" "type": "string"
} }
}, },
"scores": {
"type": "object",
"items": {
"type": "array",
"items": {
"type": "string",
"properties": {
"roundNumber": {
"type": "number"
},
"score": {
"type": "number"
},
"change": {
"type": "number"
}
}
}
}
},
"notes": { "notes": {
"type": "string" "type": "string"
} }