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
Because different discriminator values can have different schemas, our current strategy of applying basic JSON merge-patch fails when users change the discriminator and (therefore the schema).
Because different discriminator values can have different schemas, our current strategy of applying basic JSON merge-patch fails when users change the discriminator and (therefore the schema).
Ex:
AJV complains that
percentile
isn't valid because it's seeing boththreshold
andpercentile
when applying naive json merge-patch.Per @emk - The basic fix here is for all MergePatch types to start allowing
additionalProperties: { type: null }.
Then this would work, for ex:
The text was updated successfully, but these errors were encountered: