{
  "match": false,
  "comment": "objects in array with type mismatching",
  "expected": {
    "headers": {},
    "body": [{
      "Name": "John Smith",
      "Age": 50
    }],
    "matchingRules": {
      "$.body[*]": {
        "match": "type"
      },
      "$.body[*].*": {
        "match": "type"
      }
    }
  },
  "actual": {
    "headers": {},
    "body": [{
      "name": "Peter Peterson",
      "age": 22,
      "gender": "Male"
    }, {}]
  }
}
