xpath(
xml(json(concat('{"Root":{"Item":', outputs('Compose'),'}}'))),
'//Item/*'
)
xpath(
item(),
'name(/*)'
)
body('Select')
outputs('Compose')?[item()]
outputs('Compose_2')?[item()]
body('Filter_array')
concat(
'"', item(), '":',
'"', outputs('Compose_2')?[item()], '"'
)
json(
concat(
'{',
join(body('Select_2'), ','),
'}'
)
)
union()
function to merge both JSON arrays into one and then loop through this merged array. For each item, you can check if the corresponding value in both arrays is mismatched. While loops are generally discouraged in larger datasets due to performance concerns, this approach works well for small datasets.
stampcoin
105
Michael E. Gernaey
90
Super User 2025 Season 1
David_MA
62
Super User 2025 Season 1