From be044682a4f5735d98835ad9ab4670dd6feb2dd5 Mon Sep 17 00:00:00 2001 From: Felix Blanke <info@fblanke.de> Date: Tue, 4 Mar 2025 01:13:00 +0100 Subject: [PATCH] Fix solver-input --- static_common/common/schemas/solver-input.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static_common/common/schemas/solver-input.json b/static_common/common/schemas/solver-input.json index afd8f412..c19ec06e 100644 --- a/static_common/common/schemas/solver-input.json +++ b/static_common/common/schemas/solver-input.json @@ -3,10 +3,10 @@ "$id": "/schema/solver-input.schema.json", "type": "object", "properties": { - "aks": {"$ref": "/schema/ak.schema.json"}, - "rooms": {"$ref": "/schema/room.schema.json"}, - "participants": {"$ref": "/schema/participant.schema.json"}, - "timeslots": {"$ref": "/schema/timeslot.schema.json"}, + "aks": {"type": "array", "items": {"$ref": "/schema/ak.schema.json"}}, + "rooms": {"type": "array", "items": {"$ref": "/schema/room.schema.json"}}, + "participants": {"type": "array", "items": {"$ref": "/schema/participant.schema.json"}}, + "timeslots": {"type": "array", "items": {"$ref": "/schema/timeslot.schema.json"}}, "info": { "type": "object", "properties": { -- GitLab