{%- if schema.kw_min_items -%}
{{ restriction("Must contain a minimum of " ~ schema.kw_min_items.literal ~ "
items", "min-items", schema.kw_min_items.html_id) }}
{%- endif -%}
{%- if schema.kw_max_items -%}
{{ restriction("Must contain a maximum of " ~ schema.kw_max_items.literal ~ "
items", "max-items", schema.kw_max_items.html_id) }}
{%- endif -%}
{%- if schema.kw_unique_items and schema.kw_unique_items.literal == True -%}
{{ restriction("All items must be unique", "unique-items", schema.kw_unique_items.html_id) }}
{%- endif -%}
{%- if schema.kw_items -%}