Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Example

Verify whether the Age Risk field is greater than or equal to 18 4.

Code Block
{
  "Type": "Field Is Greater Than Or Equal",
  "Name": "AgeRisk",
  "Value": "184"
}

Constraint Type: Field is Empty

...

Verify whether the current record is missing a Descriptionvalue in the Regulation field.

Code Block
{
  "Type": "Field Is Empty",
  "Name": "DescriptionRegulation"
}

Constraint Type: Field is Equal

...

Example

Verify whether the Category Type field is set to Bug Data Migration.

Code Block
{
  "Type": "Field Is Equal",
  "Name": "CategoryType",
  "Value": "Bug"
"Data Migration",
  "Ignore Case": true
}

Constraint Type: Field is Less Than or Equal

...

Example

Verify whether the Age Risk field is less than or equal to 18 3.

Code Block
{
  "Type": "Field Is Less Than Or Equal",
  "Name": "AgeRisk",
  "Value": "183"
}

Constraint Type: Field is Not Empty

...

Verify whether the current record has a Description Type.

Code Block
{
  "Type": "Field Is Not Empty",
  "Name": "DescriptionType"
}

Constraint Type: Field is Not Equal

...

Example

Verify whether the Category Regulation field is not set to Bug GxP.

Code Block
{
  "Type": "Field Is Not Equal",
  "Name": "CategoryRegulation",
  "Value": "Bug"GxP",
  "Ignore Case": true
}

Constraint Type: Field is Not One Of

...

Example

Verify whether the version number value in the Revision Number Regulation field is not equal to 1 GxP, 2 SOX, or 3 SOX & GxP.

Code Block
{
  "Type": "Field Is Not One Of",
  "Name": "CategoryRegulation",
  "Values": ["1GxP", "2SOX", "3SOX & GxP"],
  "Ignore Case": true
}

Constraint Type: Field is One Of

...

Example

Verify whether the version number value in the Revision Number Type field is equal to 1 Configuration, 2 System, or 3 Acceptance.

Code Block
{
  "Type": "Field Is One Of",
  "Name": "CategoryType",
  "Values": ["1Configuration", "2System", "3Acceptance"],
  "Ignore Case": true
}