Summary
Evaluation Group
Description
Run a test evaluation group.
Route
POST /workflow_engine/runEvaluationGroups
Roles
admin
apiwrite
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
evaluation_group |
array |
yes |
Array of evaluation groups to run |
all_true_flag |
boolean |
yes |
All evaluation groups must pass, or not |
Copied to Clipboard
{
"evaluation_group": [
{
"evaluations": [
{
"operand_1": false,
"operator": "contains",
"query": "somePropertyNameInOperand_1IfItIsAnObject"
},
{
"operand_1": -94449593.98333803,
"operator": "contains",
"operand_2": [],
"query": "somePropertyNameInOperand_1IfItIsAnObject"
},
{
"operand_1": [],
"operator": "contains",
"operand_2": [],
"query": "somePropertyNameInOperand_1IfItIsAnObject"
},
{
"operand_1": 61556373,
"operator": "contains",
"operand_2": false,
"query": "somePropertyNameInOperand_1IfItIsAnObject"
},
{
"operand_1": -49134391.445930704,
"operator": "contains",
"query": "somePropertyNameInOperand_1IfItIsAnObject"
}
],
"all_true_flag": true
},
{
"evaluations": [
{
"operand_1": "veniam exercitation do",
"operator": "contains",
"operand_2": -91841625,
"query": "somePropertyNameInOperand_1IfItIsAnObject"
},
{
"operand_1": 89524032.025298,
"operator": "contains",
"query": "somePropertyNameInOperand_1IfItIsAnObject"
},
{
"operand_1": false,
"operator": "contains",
"query": "somePropertyNameInOperand_1IfItIsAnObject"
}
],
"all_true_flag": true
},
{
"evaluations": [
{
"operand_1": -27630291,
"operator": "contains",
"operand_2": 89574467.38931912,
"query": "somePropertyNameInOperand_1IfItIsAnObject"
},
{
"operand_1": 76541545.4306246,
"operator": "contains",
"operand_2": "amet",
"query": "somePropertyNameInOperand_1IfItIsAnObject"
}
],
"all_true_flag": true
}
],
"all_true_flag": true
}
Copied to Clipboard
{
"type": "object",
"properties": {
"evaluation_group": {
"type": "array",
"items": {
"type": "object",
"properties": {
"evaluations": {
"type": "array",
"items": {
"$ref": "wfEngineCommon#/definitions/evaluationItem"
}
},
"all_true_flag": {
"type": "boolean"
}
}
}
},
"all_true_flag": {
"type": "boolean"
}
},
"required": [
"evaluation_group",
"all_true_flag"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
return_value |
boolean |
Result of evaluation. |
Copied to Clipboard
false
Copied to Clipboard
{
"type": "boolean",
"title": "return_value"
}