diff --git a/spring-cloud-contract.html b/spring-cloud-contract.html
index 3a4a3aa0dc..2c4bc934ac 100644
--- a/spring-cloud-contract.html
+++ b/spring-cloud-contract.html
@@ -7197,6 +7197,29 @@ the authToken() method returns everything that you need.
+
The type of the object read from the JSON can be one of the followings depending on the +JSON path:
+String if you point to a String value in a JSON
JSONArray if you point to a List in a JSON
Map if you point to a Map in a JSON
proper Number if you point to Integer, Double etc. in a JSON
Boolean if you point to a Boolean in a JSON
byCommand('foo($it)')
will result in calling a foo method to which the value matching the JSON Path will get
passed.
+The type of the object read from the JSON can be one of the followings depending on the +JSON path:
+String if you point to a String value in a JSON
JSONArray if you point to a List in a JSON
Map if you point to a Map in a JSON
proper Number if you point to Integer, Double etc. in a JSON
Boolean if you point to a Boolean in a JSON