rougail-output-doc/tests/docs/no_namespace/04_5validators.md

40 lines
3.8 KiB
Markdown
Raw Normal View History

2024-07-10 21:27:48 +02:00
---
gitea: none
include_toc: true
---
# dictionaries/rougail/00-base.yml
```yaml
---
version: '1.1'
int:
description: A number
type: number
validators:
- type: jinja
jinja: |
{% if _.int > 100 %}
value is too high
{% endif %}
description: the max value is 100
```
# Variables
| Variable                                                                                                | Description                                                                                             |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| **int**<br/>[`number`](https://rougail.readthedocs.io/en/latest/variable.html#variables-types) `basic` `mandatory` | A number.<br/>**Validator**: the max value is 100. |
# Example with mandatory variables not filled in
```yaml
---
int: 42
```
# Example with all variables modifiable
```yaml
---
int: 42
```