{ "match": true, "comment": "Nested arrays match", "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, "match": "type" } ] }, "$.animals[*].children[*].*": { "matchers": [ { "match": "type" } ] } } } }, "actual": { "metaData": { "contentType": "application/json" }, "contents": { "animals": [ { "name" : "Mary", "children": [ {"age": 3}, {"age": 5}, {"age": 5456} ] },{ "name" : "Jo", "children": [ {"age": 0} ] } ] } } }