Summary
          Run Evaluation Task
          Description
          Run an evaluation
          Route
          No Northbound API Available
          Roles
          
            
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | all_true_flag | boolean | yes | Set whether all evaluation groups must pass | 
    | evaluation_groups | array | yes | Evaluation groups | 
            
          
          
            Copied to Clipboard
            
            {
  "all_true_flag": false,
  "evaluation_groups": [
    {
      "operand_1": "irure ex do",
      "operator": "contains",
      "operand_2": "exercitation",
      "query": "somePropertyNameInOperand_1IfItIsAnObject.nestedProperty",
      "rightQuery": "somePropertyNameInOperand_2IfItIsAnObject.nestedProperty"
    },
    {
      "operand_1": -79413615.35565257,
      "operator": "contains",
      "operand_2": [],
      "query": "somePropertyNameInOperand_1IfItIsAnObject.nestedProperty",
      "rightQuery": "somePropertyNameInOperand_2IfItIsAnObject.nestedProperty"
    },
    {
      "operand_1": "commodo",
      "operator": "contains",
      "operand_2": 58591366.73735237,
      "query": "somePropertyNameInOperand_1IfItIsAnObject.nestedProperty",
      "rightQuery": "somePropertyNameInOperand_2IfItIsAnObject.nestedProperty"
    }
  ]
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "all_true_flag": {
      "title": "all_true_flag",
      "type": "boolean"
    },
    "evaluation_groups": {
      "title": "evaluation_groups",
      "type": "array",
      "items": {
        "$ref": "wfEngineCommon#/definitions/evaluationItem"
      }
    }
  },
  "required": [
    "all_true_flag",
    "evaluation_groups"
  ],
  "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"
}