## {{texts.common_responses}} {{texts.common_responses_about}} {% for name, definition in components.responses.items() %} ### {{name}} {% if definition.description %}{{definition.description | wordwrap(80)}}{% endif %} {%- if definition.content %} {% with content = handler.simplify_content(definition.content) %}

{% for content_type, definition in content.items() %} /// tab | {{content_type}} {% include "partial/content-examples.html" %} {% if "alt_types" in definition %}{{texts.other_possible_types}}: {{definition.alt_types | join(", ")}}{% endif %} //// details | {{texts.schema_of_the_response_body}} type: hint ```json {{handler.write_content_schema(definition) | safe}} ``` //// /// {% endfor %} {% endwith %} {% endif %} {% endfor %}