Input schema is not valid (Field schema.properties.files.enum is required)
'''
{
"title": "Base64 Image Processor",
"type": "object",
"schemaVersion": 1,
"properties": {
"files": {
"type": "array",
"description": "Array of file objects to process",
"items": {
"type": "object",
"properties": {
"file": {
"type": "object",
"properties": {
"name": {"type": "string"},
"type": {"type": "string"},
"size": {"type": "integer"},
"content": {"type": "string"},
"description": {"type": "string"}
},
"required": ["name", "type", "size", "content", "description"]
}
},
"required": ["file"]
}
}
},
"required": ["files"]
}
'''
run and start show error
2025-03-16T08:19:28.275Z ACTOR: ERROR: Input schema is not valid (Field schema.properties.files.enum is required)
need help
