15 lines
247 B
YAML
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
|
|
...
|