diff --git a/1.1.x/multi/multi__spring_cloud_contract_wiremock.html b/1.1.x/multi/multi__spring_cloud_contract_wiremock.html
index 87b15af6ff..ced076a7cf 100644
--- a/1.1.x/multi/multi__spring_cloud_contract_wiremock.html
+++ b/1.1.x/multi/multi__spring_cloud_contract_wiremock.html
@@ -248,12 +248,13 @@ only contracts and not generate the stubs. That’s why we suggest to do bot
.accept(MediaType.APPLICATION_PDF)
.accept(MediaType.APPLICATION_JSON)
.contentType(MediaType.APPLICATION_JSON)
- .content("{\"foo\": 23 }"))
+ .content("{\"foo\": 23, \"bar\" : \"baz\" }"))
.andExpect(status().isOk())
.andExpect(content().string("bar"))
.andDo(WireMockRestDocs.verify()
.jsonPath("$[?(@.foo >= 20)]")
+ .jsonPath("$[?(@.bar in ['baz','bazz','bazzz'])]")
.contentType(MediaType.valueOf("application/json"))
.stub("shouldGrantABeerIfOldEnough"))
diff --git a/1.1.x/single/spring-cloud-contract.html b/1.1.x/single/spring-cloud-contract.html
index 9bc3f7ccbe..33526091d7 100644
--- a/1.1.x/single/spring-cloud-contract.html
+++ b/1.1.x/single/spring-cloud-contract.html
@@ -4103,12 +4103,13 @@ only contracts and not generate the stubs. That’s why we suggest to do bot
.accept(MediaType.APPLICATION_PDF)
.accept(MediaType.APPLICATION_JSON)
.contentType(MediaType.APPLICATION_JSON)
- .content("{\"foo\": 23 }"))
+ .content("{\"foo\": 23, \"bar\" : \"baz\" }"))
.andExpect(status().isOk())
.andExpect(content().string("bar"))
.andDo(WireMockRestDocs.verify()
.jsonPath("$[?(@.foo >= 20)]")
+ .jsonPath("$[?(@.bar in ['baz','bazz','bazzz'])]")
.contentType(MediaType.valueOf("application/json"))
.stub("shouldGrantABeerIfOldEnough"))
diff --git a/1.1.x/spring-cloud-contract.xml b/1.1.x/spring-cloud-contract.xml
index eb7a114d36..9480e9b8d0 100644
--- a/1.1.x/spring-cloud-contract.xml
+++ b/1.1.x/spring-cloud-contract.xml
@@ -6305,12 +6305,13 @@ only contracts and not generate the stubs. That’s why we suggest to do bot
.accept(MediaType.APPLICATION_PDF)
.accept(MediaType.APPLICATION_JSON)
.contentType(MediaType.APPLICATION_JSON)
- .content("{\"foo\": 23 }"))
+ .content("{\"foo\": 23, \"bar\" : \"baz\" }"))
.andExpect(status().isOk())
.andExpect(content().string("bar"))
// first WireMock
.andDo(WireMockRestDocs.verify()
.jsonPath("$[?(@.foo >= 20)]")
+ .jsonPath("$[?(@.bar in ['baz','bazz','bazzz'])]")
.contentType(MediaType.valueOf("application/json"))
.stub("shouldGrantABeerIfOldEnough"))
// then Contract DSL documentation