...
Configuration element | Value | Code Snippet | ||
---|---|---|---|---|
Name | Data Migration Test Case |
| ||
Rank | 10 |
| ||
Record Type | qTest Test Case, Automated Test Case |
| ||
Constraints | Type = Data Migration | The Field Is Equal or Field Is One Of constraint can be used for this business rule.
Note: Ignore Case default value is false. | ||
Level 1 Approvers | Technical, Business, Data Owner |
| ||
Level 2 Approvers | Quality |
| ||
Prevent Author Approval | FALSE |
|
...
Code Block |
---|
{ "Route Templates": [ { "Name": "Data Migration Test Case", "Rank": "10", "Prevent Author Approval": falsetrue, "Record Types": [ "qTest Test Case", "Automated Test Case" ], "Constraints": [ { "Type": "Field Is Equal", "Name": "Type", "Values": ["Data Migration"], "Ignore Case": false } ], "Levels": [ { "Name": "Level 1", "Approvers": ["Technical","Business","Data Owner"] }, { "Name": "Level 2", "Approvers": ["Quality"] } ] } ] } |
...
Configuration element | Value | Code Snippet | ||
---|---|---|---|---|
Name | GxP Configuration Test Case |
| ||
Rank | 20 |
| ||
Record Type | Test Test Case, Automated Test Case |
| ||
Constraints | Type = Configuration, Regulation = GxP | The Field Is Equal or Field Is One Of constraint can be used for this business rule. Ignore Case element default value is false.
Note: The All Boolean constraint is the default constraint. | ||
Level 1 Approvers | Technical |
| ||
Level 2 Approvers | Quality |
| ||
Prevent Author Approval | FALSE |
|
...
Code Block |
---|
{
"Route Templates": [
{
"Name": "GxP Configuration Test Case",
"Rank": "20",
"Prevent Author Approval": false,
"Record Types": [
"qTest Test Case",
"Automated Test Case"
],
Constraints": [
{
"Type": "All",
"Constraints": [
{
"Type": "Field Is Equal",
"Name": "Type",
"Value": "Configuration"
},
{
"Type": "Field Is One Of",
"Name": "Regulation",
"Values": ["GxP"]
}
]
}
],
"Levels": [
{
"Name": "Level 1",
"Approvers": ["Technical"]
},
{
"Name": "Level 2",
"Approvers": ["Quality"]
}
]
}
]
} |
...