Any Swaggerers in the crowd? (Well, OK, OpenAPIci...
# dev
a
Any Swaggerers in the crowd? (Well, OK, OpenAPIcians...) I want to specify an OpenAPI endpoint that returns some arbitrary content type (it might be text/plain, or text/html, or application/json, or application/binary, or really anything). How do I specify that in our swagger.yml file?
Is a response with
Copy code
responses:
  200:
    content:
      "*/*":
        schema:
          format: binary
appropriate? Will it work??? (Edited to add missing
schema
subtree
)