Today, when updating new objects / arrays of entities the new value overrides the old one. With this feature it will be possible to append values to these properties.
Example of Tags property with type of array:
Current state:
"Tags" : ["tag1"]
Ingesting a new tag using the API:
"tag2"
New state:
"Tags": ["tag1", "tag2"]