When setting a json field to null, the patch produces a replace operation like this: ``` {"op":"replace","path":"/test_int_ptr"} ``` with no `value` field. Is there perhaps a configuration option to produce an operation with null/nil instead? ``` {"op":"replace","path":"/test_int_ptr",value:null} ``` Thank you.