Hi
I have a scenario where my input to the dmn will be like a list structure
{
"input": [
{
"endpoint": "xyz",
"app_name": "app1",
"key": "platform_product_app_xyz",
"status": "ok"
},
{
"endpoint": "abx",
"app_name": "app1",
"key": "platform_product_app_abx",
"status": "warning"
},
{
"endpoint": "abz",
"app_name": "app3",
"key": "platform_product_app_abxz",
"status": "not ok"
}
]
}
my decision table will have a structure like
how can i match / check / compare rows in the table with the json list i am getting in input ?
Regards
Rishab