...
Type: Value must be
Field Is Greater Than Or Equal
Name: The name of the field to evaluate.
Value: The value to compare against the field's current value. Must be an integer.
Optional Properties
None
Example
Verify whether the Age field is greater than or equal to 18.
Code Block |
---|
{
"Type": "Field Is Greater Than Or Equal",
"Name": "Age",
"Value": "18"
} |
Constraint Type: Field is Empty
...
Type: Value must be
Field Is Empty
Name: The name of the field to evaluate.
Optional Properties
None
Example
Verify whether the current record is missing a Description.
Code Block |
---|
{
"Type": "Field Is Empty",
"Name": "Description"
} |
Constraint Type: Field is Equal
...
Ignore Case:
Yes
orNo
; Ignore case-sensitivity during the comparison.No
is the default behavior when this property is omitted. (i.e. Comparisons are case-sensitive by default.)
Example
Verify whether the Category field is set to Bug.
Code Block |
---|
{
"Type": "Field Is Equal",
"Name": "Category",
"Value": "Bug"
} |
Constraint Type: Field is Less Than or Equal
...
Type: Value must be
Field Is Less Than Or Equal
Name: The name of the field to evaluate.
Value: The value to compare against the field's current value. Must be an integer.
Optional Properties
None
Example
Verify whether the Age field is less than or equal to 18.
Code Block |
---|
{
"Type": "Field Is Less Than Or Equal",
"Name": "Age",
"Value": "18"
} |
Constraint Type: Field is Not Empty
...
Type: Value must be
Field Is Not Empty
Name: The name of the field to evaluate.
Optional Properties
None
Example
Verify whether the current record has a Description.
Code Block |
---|
{
"Type": "Field Is Not Empty",
"Name": "Description"
} |
Constraint Type: Field is Not Equal
...
Ignore Case:
Yes
orNo
; Ignore case-sensitivity during the comparison.No
is the default behavior when this property is omitted. (i.e. Comparisons are case-sensitive by default.)
Example
Verify whether the Category field is not set to Bug.
Code Block |
---|
{
"Type": "Field Is Not Equal",
"Name": "Category",
"Value": "Bug"
} |
Constraint Type: Field is Not One Of
...
Type: Value must be
Field Is Not One Of
Name: The name of the field to evaluate.
ValueValues: The value values to compare against the field's current value.
...
Ignore Case:
Yes
orNo
; Ignore case-sensitivity during the comparison.No
is the default behavior when this property is omitted. (i.e. Comparisons are case-sensitive by default.)
Example
Verify whether the version number in the Revision Number field is not equal to 1, 2, or 3.
Code Block |
---|
{
"Type": "Field Is Not One Of",
"Name": "Category",
"Values": ["1", "2", "3"]
} |
Constraint Type: Field is One Of
...
Type: Value must be
Field Is One Of
Name: The name of the field to evaluate.
ValueValues: The value values to compare against the field's current value.
...
Ignore Case:
Yes
orNo
; Ignore case-sensitivity during the comparison.No
is the default behavior behaviour when this property is omitted. (i.e. Comparisons are case-sensitive by default.)
Example
Verify whether the version number in the Revision Number field is equal to 1, 2, or 3.
Code Block |
---|
{
"Type": "Field Is One Of",
"Name": "Category",
"Values": ["1", "2", "3"]
} |