On this page
No Headings
The JSON patch object to apply partial updates to resources.
objectoprequiredstring"add", "remove", "replace", "move", "copy", "test"The operation.
pathstring^[\S\s]*$The JSON Pointer to the target document location at which to complete the operation.
valueThe value to apply. The remove, copy, and move operations do not require a value. Since JSON Patch allows any type for value, the type property is not specified.
fromstring^[\S\s]*$The JSON Pointer to the target document location from which to move the value. Required for the move operation.