From 6aa90d22eaafb0f92dd1e4e84362b2a5027aacf7 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 16 Nov 2024 16:57:10 +0100 Subject: [PATCH] feat: fix additional properties Signed-off-by: kjuulh --- schemas/base.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/schemas/base.json b/schemas/base.json index f25df84..ba31c72 100644 --- a/schemas/base.json +++ b/schemas/base.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "additionalProperties": false, + "additionalProperties": true, "properties": { "base": { "title": "Base url from which to base current cuddle plan on", @@ -27,6 +27,9 @@ }, { "type": "object" + }, + { + "type": "array" } ] }