[
{
"op": "replace",
"path": "/firstName",
"value": "John"
},
{
"op": "replace",
"path": "/gender",
"value": "2"
},
{
"op": "add",
"path": "/dateOfBirth",
"value": "2000/03/24"
},
{
"op": "remove",
"path": "/title"
}
]
<JsonPatchOperations xmlns="https://personalia.webapiservices.com">
<JsonPatchOperation>
<op>replace</op>
<path>/firstName</path>
<value>John</value>
</JsonPatchOperation>
<JsonPatchOperation>
<op>replace</op>
<path>/gender</path>
<value>2</value>
</JsonPatchOperation>
<JsonPatchOperation>
<op>add</op>
<path>/dateOfBirth</path>
<value>2000/03/24</value>
</JsonPatchOperation>
<JsonPatchOperation>
<op>remove</op>
<path>/title</path>
</JsonPatchOperation>
</JsonPatchOperations>