What is the correct way to declare a 'char' in an OpenAPI/Swagger-file? I tried these.. but didn't work
myTestProperty:
type: char
example: C or B
I tired this way as well, but no luck
myTestProperty:
type: string
format: char
example: C or B
The documentation does specifically mention about the char data type and can't find elsewhere as well.
Please suggest.