Evaluator

Evaluators encodes a set of rules to automatically approve or deny specific records.

You can create and iterate on your own workflow.


Evaluator Schema

  id: string;

  name: string;
  description: string;

  on_failure_label: string;
  on_manual_label: string;
  on_success_label: string;

  entry_point: string;

  nodes: {
  	  key: string;
      value: string;
      operator: string;
      variable: string;
      label?: string;
  }[];
  
edges: {
  node: string;
  on_true: string;
  on_false: string;  
}[];