Given the following JsonPatch (modelled as a Jackson `ArrayNode`) ``` [{"op":"replace","path":"/stories","value":[{"id":"story1420386726248.278010"}]}] ``` when parsed into a `Patch`, the `value` of the `ReplaceOperation` is `null` To parse, I'm simply doing: ``` Patch patch = new JsonPatchMaker().fromJsonNode(jsonPatch); ``` Screenshot of the debug session: 
Given the following JsonPatch (modelled as a Jackson
ArrayNode)when parsed into a
Patch, thevalueof theReplaceOperationisnullTo parse, I'm simply doing:
Screenshot of the debug session: