我有一个类似于下面的 json 示例的数据结构,我想遍历嵌套列表以获取“DetailType”,检查单个“DetailType”是否为“ABC”,然后不要检查其余的 Accounts 并返回 true。这如何在 DMN 中建模。基本上,如果客户有一个具有“DetailType”=“ABC”的帐户,那么它就是一个有效的客户。
"Customer Profile" : {
"customer" : {
"customerName" : "gjhjhkj",
"Accounts" : [ {
"Number" : "pWYSk93jiL",
"accountDetails" : [ {
"DetailDesc" : "sdfdsff",
"DetailType" : "4354355435",
}, {
"DetailDesc" : "Mr7GQRzcc0",
"DetailType" : "JERV3kQZFR",
}
} ]
}
}