{
  "data": [
    {
      "_id": 1,
      "y": [
        {
          "b": 3
        },
        {
          "b": 1
        }
      ]
    },
    {
      "_id": 2,
      "y": [
        {
          "b": 0
        },
        {
          "b": 1
        }
      ]
    }
  ],
  "minServerVersion": "3.5.6",
  "tests": [
    {
      "description": "BulkWrite with arrayFilters",
      "operation": {
        "arguments": {
          "options": {
            "ordered": true
          },
          "requests": [
            {
              "arguments": {
                "arrayFilters": [
                  {
                    "i.b": 3
                  }
                ],
                "filter": {},
                "update": {
                  "$set": {
                    "y.$[i].b": 2
                  }
                }
              },
              "name": "updateOne"
            },
            {
              "arguments": {
                "arrayFilters": [
                  {
                    "i.b": 1
                  }
                ],
                "filter": {},
                "update": {
                  "$set": {
                    "y.$[i].b": 2
                  }
                }
              },
              "name": "updateMany"
            }
          ]
        },
        "name": "bulkWrite"
      },
      "outcome": {
        "collection": {
          "data": [
            {
              "_id": 1,
              "y": [
                {
                  "b": 2
                },
                {
                  "b": 2
                }
              ]
            },
            {
              "_id": 2,
              "y": [
                {
                  "b": 0
                },
                {
                  "b": 2
                }
              ]
            }
          ]
        },
        "result": {
          "deletedCount": 0,
          "insertedIds": {},
          "matchedCount": 3,
          "modifiedCount": 3,
          "upsertedCount": 0,
          "upsertedIds": {}
        }
      }
    }
  ]
}