diff --git a/Request-Matching-JsonPathMatcher.md b/Request-Matching-JsonPathMatcher.md index 805b5ee..d0a5331 100644 --- a/Request-Matching-JsonPathMatcher.md +++ b/Request-Matching-JsonPathMatcher.md @@ -46,10 +46,11 @@ server } ``` -``` +``` js // matching { "things": { "name": "RequiredThing" } } { "things": [ { "name": "RequiredThing" }, { "name": "Wiremock" } ] } + // not matching { "price": 15 } { "things": { "name": "Wiremock" } }