I am new to swagger. I have an endpoint which is accepting input in the format of 'text / csv (UTF-8). I want to add open api documentation for the end point. But I am not finding any examples from the official website request body description swagger
CSV string = "header1;header2|loream,2"
ContentType = `text/csv(UTF-8)`
I have to specify
header1:
type: string
header2:
type: integer
Any suggestions will be helpful for me.
Thanks in advance