IS_IPV6

Checks if a text value is a valid IPV6 address.

Syntax 

IS_IPV6(text)

Usage examples 

Example 1

Input

1
{
2
"my_action": {
3
"message": "2001:0db8:85a3:0000:0000:8a2e:0370:7334"
4
}
5
}

Formula

IS_IPV6(my_action.message)

Output

true

Example 2

Input

1
{
2
"my_action": {
3
"message": "192.168.0.1"
4
}
5
}

Formula

IS_IPV6(my_action.message)

Output

false
Was this helpful?