{ "match": false, "comment": "Nested arrays do not match, age is wrong type", "expected": { "metaData": { "contentType": "application/json" }, "contents": { "animals": [ { "name" : "Fred", "children": [ { "age": 9 } ] } ] }, "matchingRules": { "body": { "$.animals": { "matchers": [ { "min": 1, "match": "type" } ] }, "$.animals[*].*": { "matchers": [ { "match": "type" } ] }, "$.animals[*].children": { "matchers": [ { "min": 1 } ] }, "$.animals[*].children[*].*": { "matchers": [ { "match": "type" } ] } } } }, "actual": { "metaData": { "contentType": "application/json" }, "contents": { "animals": [ { "name" : "Mary", "children": [{"age": "9"}] } ] } } }