{
  "match": true,
  "comment": "objects in array type matching",
  "expected": {
    "headers": {},
    "body": [{
      "name": "John Smith",
      "age": 50
    }],
    "matchingRules": {
      "$.body": {
        "match": "type"
      },
      "$.body[*]": {
        "match": "type"
      },
      "$.body[*].*": {
        "match": "type"
      }
    }
  },
  "actual": {
    "headers": {},
    "body": [{
      "name": "Peter Peterson",
      "age": 22,
      "gender": "Male"
    }, {
      "name": "John Johnston",
      "age": 64
    }]
  }
}
