From 0668a8cfdc5fa5ff89acce1512a11d159a0d1eac Mon Sep 17 00:00:00 2001 From: Miodec Date: Mon, 21 Feb 2022 13:26:55 +0100 Subject: [PATCH] fixed challenge schema --- frontend/json-validation.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/json-validation.js b/frontend/json-validation.js index 0bf917e5f..4ebfafc1f 100644 --- a/frontend/json-validation.js +++ b/frontend/json-validation.js @@ -150,7 +150,12 @@ function validateOthers() { config: { type: "object", }, - funbox: { type: "string" }, + funbox: { + type: "object", + properties: { + exact: { type: "string" }, + }, + }, }, }, },