rougail-tests/structures/04_5validators_warnings/rougail/00-base.yml

15 lines
247 B
YAML

%YAML 1.2
---
version: 1.1
int:
description: An integer
default: 1000
validators:
- jinja: |-
{% if _.int > 100 %}
value is too high
{% endif %}
description: the max value is 100
warnings: true
...