From 65704b4a039fea1f2651304fbda9707fb645aee1 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 12 Apr 2026 01:42:02 +0200 Subject: [PATCH] Updated schema to add scores attribute --- assets/schema.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/assets/schema.json b/assets/schema.json index 4bd1df6..f5e363b 100644 --- a/assets/schema.json +++ b/assets/schema.json @@ -161,6 +161,26 @@ "type": "string" } }, + "scores": { + "type": "object", + "items": { + "type": "array", + "items": { + "type": "string", + "properties": { + "roundNumber": { + "type": "number" + }, + "score": { + "type": "number" + }, + "change": { + "type": "number" + } + } + } + } + }, "notes": { "type": "string" }