KevinDockx / JsonPatch

JSON Patch (JsonPatchDocument) RFC 6902 implementation for .NET
MIT License
174 stars 28 forks source link

JsonPatch operators should be lowercase (e.g. "replace" not "Replace") #62

Closed gzak closed 7 years ago

gzak commented 7 years ago

Title says it all, technically the spec defines operators in all lowercase, but this package serializes them in Pascal case (I think - I think that's the default serialization behavior of an enum).

gzak commented 7 years ago

Just looked through the code, I am mistaken. However, I think there is another issue with paths, will open a ticket shortly if that's the case.