Open
Description
Description of the feature request:
This is an invalid type because you define responseSchema using enums.
responseSchema: {
"type": "object",
"properties": {
"test": {
"type": "string"
}
}
}
We must do this to avoid type errors.
responseSchema: {
"type": SchemaType.OBJECT,
"properties": {
"test": {
"type": SchemaType.STRING
}
}
}
What problem are you trying to solve with this feature?
No response
Any other information you'd like to share?
No response