Is it possible to render inline images as part of description texts etc in openapi3.0/swagger? When looking at the spec, all I can find is the ability to link to images in request examples, specifically. What I want is to be able to include diagrams etc in introductory texts of my API, similar to markdown etc. Example:
openapi: 3.0.2
info:
version: "1.0.0"
title: "My API"
description: "This API bla bla bla [block diagram] bla bla [another inline image]"
Is anything like this at all possible?