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

16 lines
247 B
YAML
Raw Normal View History

2025-11-05 21:39:56 +01:00
%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
...