responses
{% for r in endpoint.resp %}
http code
{{ r.code }}
{% if r.description.raw is not none %}
description
{{ r.description.raw|markdown }}
{% endif %} {% if r.body %}
mime type
{{ r.body[0].mime_type }}
{% if r.body[0].schema is not none %}
schema
{{ r.body[0].schema|jsonify|e }}
{% endif %} {% endif %} {% if not loop.last and loop.length > 1 %}

{% endif %} {% endfor %}