Summary
          Evaluation
          Description
          Run a test evaluation.
          Route
          POST /workflow_engine/runEvaluationGroup
          Roles
          
            admin
apiwrite
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | evaluation_group | array | yes | Array of evaluations to run | 
    | all_true_flag | boolean | yes | All evaluation groups must pass, or not | 
            
          
          
            Copied to Clipboard
            
            {
  "evaluation_group": [
    {
      "operand_1": 85551957,
      "operator": "contains",
      "operand_2": "commodo elit proident est",
      "query": "somePropertyNameInOperand_1IfItIsAnObject.nestedProperty",
      "rightQuery": "somePropertyNameInOperand_2IfItIsAnObject.nestedProperty"
    },
    {
      "operand_1": 74064006.80484784,
      "operator": "contains",
      "operand_2": [],
      "query": "somePropertyNameInOperand_1IfItIsAnObject.nestedProperty",
      "rightQuery": "somePropertyNameInOperand_2IfItIsAnObject.nestedProperty"
    },
    {
      "operator": "contains",
      "operand_2": 50569847,
      "query": "somePropertyNameInOperand_1IfItIsAnObject.nestedProperty",
      "rightQuery": "somePropertyNameInOperand_2IfItIsAnObject.nestedProperty"
    },
    {
      "operand_1": 11431675.842360795,
      "operator": "contains",
      "operand_2": -69918086.55505607,
      "query": "somePropertyNameInOperand_1IfItIsAnObject.nestedProperty",
      "rightQuery": "somePropertyNameInOperand_2IfItIsAnObject.nestedProperty"
    },
    {
      "operand_1": 59463681.59862271,
      "operator": "contains",
      "operand_2": false,
      "query": "somePropertyNameInOperand_1IfItIsAnObject.nestedProperty",
      "rightQuery": "somePropertyNameInOperand_2IfItIsAnObject.nestedProperty"
    }
  ],
  "all_true_flag": false
}
           
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {
    "evaluation_group": {
      "type": "array",
      "items": {
        "$ref": "wfEngineCommon#/definitions/evaluationItem"
      }
    },
    "all_true_flag": {
      "type": "boolean"
    }
  },
  "required": [
    "evaluation_group",
    "all_true_flag"
  ],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | evaluation_group_value | boolean | Result of evaluation. | 
            
          
          
            Copied to Clipboard
            
            false
           
          
            Copied to Clipboard
            
            {
  "type": "boolean",
  "title": "evaluation_group_value"
}