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
PartialUpdate is based on RFC7396 (JSON merge patch) which allows to merge at object level, so no way to update only a part of an array https://www.rfc-editor.org/rfc/pdfrfc/rfc7396.txt.pdf There are a few things to note about the function. If the patch is anything other than an object, the result will always be to replace the entire target with the entire patch. Also, it is not possible to patch part of a target that is not an object, such as to replace just some of the values in an array.
It means that any change on a part of the biometrics in this array (e.g. update the signature) requires to send ALL biometrics or only this part (e.g. signature) will be kept................
The same for other entities like documents...
I think it is a problem if we consider to send data (biometrics, scanned documents...) step by step.
The text was updated successfully, but these errors were encountered:
In the existing OSIA API, there's no way to send biometrics modality by modality, e.g:
Each Update (PartialUpdate) will overwrite the whole biometrics block due to the following constraints:
PartialUpdate (PATCH):
https://www.rfc-editor.org/rfc/pdfrfc/rfc7396.txt.pdf
There are a few things to note about the function. If the patch is anything other than an object, the result will always be to replace the entire target with the entire patch. Also, it is not possible to patch part of a target that is not an object, such as to replace just some of the values in an array.
It means that any change on a part of the biometrics in this array (e.g. update the signature) requires to send ALL biometrics or only this part (e.g. signature) will be kept................
The same for other entities like documents...
I think it is a problem if we consider to send data (biometrics, scanned documents...) step by step.
The text was updated successfully, but these errors were encountered: