<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />

MergeArrayHandling

public enum MergeArrayHandling
Specifies how JSON arrays are merged together.
Concat = 0

Concatenate arrays.

Merge = 3

Merge array items together, matched by index.

Replace = 2

Replace all array items.

Union = 1

Union arrays, skipping items that already exist.