From 85bd5c2f2af7e2d874add7830b72a38ba1a4d738 Mon Sep 17 00:00:00 2001 From: sebthom Date: Thu, 5 Jun 2025 13:07:07 +0200 Subject: [PATCH] fix: update config schema --- schemas/config.schema.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/schemas/config.schema.json b/schemas/config.schema.json index 1716e1c..bdd3ad2 100644 --- a/schemas/config.schema.json +++ b/schemas/config.schema.json @@ -80,6 +80,21 @@ "title": "Sell Directly", "type": "boolean" }, + "images": { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Images" + }, "contact": { "$ref": "#/$defs/ContactDefaults" },