1145: col-4 xpath expression in not correct
col-4 is currently defined as: Context: CollateralBalance [exists(variationMargin)] [count(pendingCollateral) eq 2] variationMargin/pendingCollateral[1]/giverPartyReference neq variationMargin/pendingCollateral[2]/giverPartyReference && variationMargin/pendingCollateral[1]/receiverPartyReference neq variationMargin/pendingCollateral[2]/ receiverPartyReference but 1) There is no receiverPartyReference element in PendingCollateral. It should be takerPartyReference. 2) The rule should be comparing the value of the href attributes I suggest the expression should be variationMargin/pendingCollateral[1]/giverPartyReference/@href neq variationMargin/pendingCollateral[2]/giverPartyReference/@href && variationMargin/pendingCollateral[1]/takerPartyReference/@href … Continued