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.
David_MA
385
Super User 2025 Season 1
stampcoin
328
Michael E. Gernaey
316
Super User 2025 Season 1