From c49bc7547eec51866909903820c24d12b59d14c1 Mon Sep 17 00:00:00 2001
From: Ernesto Rico Schmidt <ernesto@helsinki.at>
Date: Tue, 25 Mar 2025 16:15:07 -0400
Subject: [PATCH] docs: clarify the format of solutions

---
 program/serializers.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/program/serializers.py b/program/serializers.py
index 69a7745..90b86d1 100644
--- a/program/serializers.py
+++ b/program/serializers.py
@@ -1095,7 +1095,8 @@ class ScheduleCreateUpdateRequestSerializer(serializers.Serializer):
     solutions = serializers.DictField(
         child=serializers.ChoiceField(SOLUTION_CHOICES),
         required=False,
-        help_text="Array of solution choices.",
+        help_text="Dictionary of solution choices. The key is the collision’s `hash` , the value "
+        "is one of the `solutionChoices` offered.",
     )
 
 
-- 
GitLab