The OpenApi response when the column type is an enum includes an enum property which lists all the values of the enum. This property is missing if the column is an array type. The expected output would be
{
"format": "schema.typename[]",
"type": "array",
"items": {
"type": "string",
"enum": ["first-value", "second-value"] // This property is currently missing
}
}
It would be very helpful if this was resolved as our app needs it. If this is a simple enough issue and if you could direct me to the correct starting point I can attempt raising a fix for this as well.
Hey,
The OpenApi response when the column type is an enum includes an
enum
property which lists all the values of theenum
. This property is missing if the column is an array type. The expected output would beIt would be very helpful if this was resolved as our app needs it. If this is a simple enough issue and if you could direct me to the correct starting point I can attempt raising a fix for this as well.
Thanks!