Skip to content

Instantly share code, notes, and snippets.

@ronakjain90
Last active July 2, 2021 17:02
Show Gist options
  • Save ronakjain90/7ce135feada1f093c54ffde1370a9982 to your computer and use it in GitHub Desktop.
Save ronakjain90/7ce135feada1f093c54ffde1370a9982 to your computer and use it in GitHub Desktop.
Evaluation Engine
{
"nodes": [
{
"conditions": [
{
"name": "total_price",
"operator": ">=",
"value": 200
}
],
"actions": "first_action_executed"
}
],
"parameters": {
"total_price": 200
}
}
{
"nodes": [
{
"conditions": [
{
"name": "total_price",
"operator": ">",
"value": 200
}
],
"actions": "first_action_executed"
},
{
"conditions": [
{
"name": "total_price",
"operator": ">=",
"value": 199
},
{
"name": "tax",
"operator": "<",
"value": 1
}
],
"actions": "second_action_executed"
},
{
"conditions": [
{
"name": "total_price",
"operator": ">=",
"value": 199
},
{
"name": "total_order_price",
"operator": "<",
"value": 300
}
],
"actions": "third_action_executed"
}
],
"parameters": {
"total_price": 200,
"tax": 20,
"total_order_price": 220
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment