The examples key can only be used to specify a single example response. If more than one example is provided only the first is displayed.
"/myCar":
get:
operationId: CAR
produces:
- application/json
- text/plain
responses:
'200':
description: OK
examples:
application/json:
car: 'blue'
text/plain: 'TextAboutMyCar'
schema:
"$ref": "#/def/cars"
security: []
parameters: []```