{ "match": true, "comment": "Requests match with regex", "expected" : { "headers": {"Content-Type": "application/json"}, "matchingRules": { "body": { "$.alligator.name": { "matchers": [ { "match": "regex", "regex": "\\w+" } ] } } }, "body": { "contentType": "application/json", "encoded": false, "content": { "alligator": { "name": "Mary", "feet": 4, "favouriteColours": [ "red", "blue" ] } } } }, "actual": { "headers": {"Content-Type": "application/json"}, "body": { "contentType": "application/json", "encoded": false, "content": { "alligator": { "feet": 4, "name": "Harry", "favouriteColours": [ "red", "blue" ] } } } } }