{% if minimalize or schema.ref or not schema.properties %}
{% include "schema/_schema_text.html" %}
{% else %}
⮞{% include "schema/_schema_text.html" %}
{# Properties #}
{% for property in schema.properties %}
{{ property }}
{# Show Default #}
{% if "default" in schema.properties[property].__fields_set__ %}
{% with value=schema.properties[property].default %}
=
{% include "schema/_value.html" %}
{% endwith %}
{% endif %}
{# Required #}
{% if property in (schema.required or []) %}required{% endif %}
{% if schema.properties[property].description %}
{{ schema.properties[property].description }}
{% endif %}
{% with schema=schema.properties[property], schema_id=schema_id + id(loop.index0) %}
{% include "schema/schema.html" %}
{% endwith %}