fix(schema): allow numbers in for loop lists

This commit is contained in:
Valentin Maerten
2025-12-14 10:34:39 +01:00
parent 2343529327
commit 2585bdccc4

View File

@@ -494,7 +494,7 @@
"description": "A list of values to iterate over", "description": "A list of values to iterate over",
"type": "array", "type": "array",
"items": { "items": {
"type": "string" "type": ["string", "number"]
} }
}, },
"for_attribute": { "for_attribute": {