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
This commit is contained in:
2026-09-03 12:29:47 +00:00
parent 3abdc52fef
commit 5e04a1ca3a
+4
View File
@@ -209,6 +209,10 @@
},
"choices": {
"oneOf": [
{
"type": "string",
"description": "Allow !include string for tibi-server YAML include"
},
{
"type": "array",
"items": {