isAlpha
Returns true if the string contains only alphabetic characters (A-Z, a-z, Unicode letters).
string(required): string to test
bash
echo '{"name": "Alice"}' | utlx -e 'isAlpha($input.name)'
# trueutlx
{
validName: isAlpha($input.firstName),
hasSpecialChars: !isAlpha($input.input)
}