{{ definition_name }} {{ definition.domain }}
{{ definition.description }}
{% if definition.title %}
{{ definition.title }}
{% endif %}
{{ definition.name }}
{{ definition.type }} {% if definition.format %} {{ definition.format }} {% endif %}
{% if definition.example %}
Example: {{ definition.example }}
{% endif %} {% if definition.tags %}
Tags: {% for tag in definition.tags %} {{ tag }} {% endfor %}
{% endif %} {% if definition.enum %}
Enum: {% for value in definition.enum %} {{ value }} {% endfor %}
{% endif %}
{% if definition.minLength %} minLength:{{ definition.minLength }} {% endif %} {% if definition.maxLength %} maxLength:{{ definition.maxLength }} {% endif %} {% if definition.pattern %} pattern:{{ definition.pattern }} {% endif %} {% if definition.precision %} precision:{{ definition.precision }} {% endif %} {% if definition.scale %} scale:{{ definition.scale }} {% endif %} {% if definition.minimum %} minimum:{{ definition.minimum }} {% endif %} {% if definition.exclusiveMinimum %} exclusiveMinimum:{{ definition.exclusiveMinimum }} {% endif %} {% if definition.maximum %} maximum:{{ definition.maximum }} {% endif %} {% if definition.exclusiveMaximum %} exclusiveMaximum:{{ definition.exclusiveMaximum }} {% endif %} {% if definition.classification %} {{ definition.classification }} {% endif %} {% if definition.pii %} PII {% endif %} {% for key, value in definition.model_extra.items() %} {{ key }}:{{ value }} {% endfor %} {% if definition.links %} {% for name,href in definition.links.items() %} {{ name }} {% endfor %} {% endif %}