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
final PatchRequest patchToBeApplied = new ObjectMapper()
.readValue(patchRequest, PatchRequest.class);
final GenericScimResource resource = new ObjectMapper()
.readValue(resourceJson, GenericScimResource.class);
patchToBeApplied.apply(value);
in the result the nested fields are added instead of replaced.
final PatchRequest patchToBeApplied = new ObjectMapper()
.readValue(patchRequest, PatchRequest.class);
final GenericScimResource resource = new ObjectMapper()
.readValue(resourceJson, GenericScimResource.class);
patchToBeApplied.apply(value);
This was Microsoft/Entra/Azure Scim provider. I use the validator here, this has to pass before an app can be published in the Microsoft Enterprise gallery.
Describe the bug
When using the following code
in the result the nested fields are added instead of replaced.
patchRequest has the following body
something like the following is produced
To Reproduce
Expected behavior
The following pached JSON would be excpected.
Additional context
Add any other context about the problem here. For example:
Edit1: Improve JSON code formatting
Edit2: Add Java sample code
The text was updated successfully, but these errors were encountered: