validator_validate_length
Check if a string or list's length falls within specified minimum and maximum limits. Returns validation status, actual length, and a reason for failure.
Instructions
[validator] Validate string or list length. Returns {valid: bool, length: int, reason: str}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | ||
| min_length | No | ||
| max_length | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |