You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In JSON Merge Patch RFC7396null values are given special meaning to indicate the removal of existing values in the target.
This isn't recommended for documents that allow explicit null values like STAC.
This design means that merge patch documents are suitable for
describing modifications to JSON documents that primarily use objects
for their structure and do not make use of explicit null values.
Should JSON Patch RFC6902 be supported? This allow for operations (add, remove, replace, move, copy, test) to be declared which allows the setting of null values.
Both can be supported simultaneously through the use of the Accept/Content-Type headers application/merge-patch+json and application/json-patch+json
The text was updated successfully, but these errors were encountered:
In JSON Merge Patch RFC7396
null
values are given special meaning to indicate the removal of existing values in the target.This isn't recommended for documents that allow explicit
null
values like STAC.Should JSON Patch RFC6902 be supported? This allow for operations (add, remove, replace, move, copy, test) to be declared which allows the setting of
null
values.Both can be supported simultaneously through the use of the
Accept
/Content-Type
headersapplication/merge-patch+json
andapplication/json-patch+json
The text was updated successfully, but these errors were encountered: