Reason a JSON patch object failed to parse.
Synopsis
Declared in <folly/json/json_patch.h>
enum class parse_error_code : uint8_t;
Members
Name |
Description |
|
No specific error. |
|
The patch document has an unexpected shape. |
|
An operation is missing its "op" attribute. |
|
The "op" attribute names an unknown operation. |
|
The "op" attribute is malformed. |
|
An operation is missing its "path" attribute. |
|
The "path" attribute is malformed. |
|
An operation is missing its "from" attribute. |
|
The "from" attribute is malformed. |
|
An operation is missing its "value" attribute. |
|
Two pointers in the operation overlap. |
Created with MrDocs