{ "match": true, "comment": "Requests match with regex", "expected" : { "method": "POST", "path": "/", "query": {}, "headers": {"Content-Type": "application/json"}, "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" } ] } } }, "body": { "contentType": "application/json", "encoded": false, "content": { "alligator": { "name": "Mary", "feet": 4, "favouriteColours": [ "red", "blue" ] } } } }, "actual": { "method": "POST", "path": "/", "query": {}, "headers": {"Content-Type": "application/json"}, "body": { "contentType": "application/json", "encoded": false, "content": { "alligator": { "feet": 4, "name": "Harry", "favouriteColours": [ "blue", "red" ] } } } } }