Hello Guys,
I am trying to execute a DMN which should ignore case from a json which is provided as input. and only some fields are checked from json.
eg
{
“variables”: {
“transaction”: {
“value”: “{"transaction_category":"PREMIUM","transaction_type":"CLAIM PREMIUM","account_type":"client"}”,
“type”: “json”
}
}
}
Only account_type is check
transaction.account_type.toUpperCase() = “CLIENT” return true
Thanks