{{property.description}}

{% if property.maxLength %}

Max length: {{property.maxLength}}

{% endif %} {% if property.enum %} {% if property.enumDescription %}

Values:

{% for enum in property.enum %}

{{enum}} {% for enumKey, enumDescription in property.enumDescription.items %} {% if enumKey == enum %} {{enumDescription}} {% endif %} {% endfor %}

{% endfor %} {% else %}

Values: {% for enum in property.enum %} {{enum}}{% if not forloop.last %} ,{% endif %} {% endfor %}

{% endif %} {% endif %} {% if property.type == "object" %} {% with property as item %} {% include "ramlwrap_default_properties.html" %} {% endwith %} {% endif %} {% if property.type == "array" and property.items %} {% with property.items as item %} {% include "ramlwrap_default_properties.html" %} {% endwith %} {% endif %} {% if property.type == "array" and property.items and property.items.anyOf %} {% for any in property.items.anyOf %} {% if any.type == "object" %} {% with property.items as item %} {% include "ramlwrap_default_properties.html" %} {% endwith %} {% endif %} {% endfor %} {% endif %}