From 5e04a1ca3a58a4c219162726e2289486e6d3f2aa Mon Sep 17 00:00:00 2001 From: Sebastian Frank Date: Thu, 3 Sep 2026 12:29:47 +0000 Subject: [PATCH] fix(schema): allow !include string for choices (tibi-server YAML include) choices previously only array|object, now also string to allow choices: !include ../../choices/icon-choices.yml which tibi-server resolves via yamlResolveIncludes before validation --- schemas/config/defs.schema.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/schemas/config/defs.schema.json b/schemas/config/defs.schema.json index 5c9d0cc..a0176ed 100644 --- a/schemas/config/defs.schema.json +++ b/schemas/config/defs.schema.json @@ -209,6 +209,10 @@ }, "choices": { "oneOf": [ + { + "type": "string", + "description": "Allow !include string for tibi-server YAML include" + }, { "type": "array", "items": {