{% load custom_filters %} {% if responses %} ## Responses {% for response in responses %} ### {{ response.status_code }} {% if response.description %} {{ response.description }} {% endif %} {% if response.examples|length > 1 %}
{% for example in response.examples %} {% endfor %}
{% for example in response.examples %}
{% if example.description %}

{{ example.description }}

{% endif %}
{% if example.schema_display and example.schema_display|length > 0 %} {% endif %}
{% if example.json and example.json != "null" %}
```json {{ example.json|json_for_display }} ```
{% else %}
```json null ```
{% endif %}
{% if example.schema_display and example.schema_display|length > 0 %}
{{ example.schema_display|escape }}
{% endif %}
{% endfor %}
{% elif response.examples|length == 1 %} {% with example=response.examples.0 %}
{% if example.schema_display and example.schema_display|length > 0 %} {% endif %}
{% if example.json and example.json != "null" %}
```json {{ example.json|json_for_display }} ```
{% else %}
```json null ```
{% endif %}
{% if example.schema_display and example.schema_display|length > 0 %}
{{ example.schema_display|escape }}
{% endif %}
{% endwith %} {% endif %} {% endfor %} {% endif %}