FEEL Engine Playground

Expression
Unary
DMN

Expression

x + 3

Unary

< 2

Input value

1

Decision table

Input

A JSON document that is used as input context when evluation the decision table.

{
 "rate": 5,
 "amount": 100
}

Context

JSON document
FEEL context

A JSON document that is used to resolve variables in the expression.

{
 "x": 5
}

A FEEL context that is used to resolve variables in the expression.

{
 "add": function (a, b) a + b
}