{ "match": true, "comment": "Request match with integers", "expected" : { "method": "POST", "path": "/", "query": {}, "headers": {"Content-Type": "application/json"}, "matchingRules": { "body": { "$.alligator.feet": { "matchers": [ { "match": "regex", "regex": "[0-9]" } ] } } }, "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": "Mary", "favouriteColours": [ "red", "blue" ] } } } } }