{ "match": true, "comment": "Messages match with regex", "expected": { "metaData": { "contentType": "application/json" }, "contents": { "alligator":{ "name": "Mary", "feet": 4, "favouriteColours": ["red","blue"] } }, "matchingRules": { "body": { "$.alligator.name": { "matchers": [ { "match": "regex", "regex": "\\w+" } ] }, "$.alligator.favouriteColours[0]": { "matchers": [ { "match": "regex", "regex": "red|blue" } ] }, "$.alligator.favouriteColours[1]": { "matchers": [ { "match": "regex", "regex": "red|blue" } ] } } } }, "actual": { "metaData": { "contentType": "application/json" }, "contents": { "alligator":{ "feet": 4, "name": "Harry", "favouriteColours": ["blue", "red"] } } } }