PatchInstruction
                                PatchInstruction                            
                            A object, represent the JSON PATCH operations, as defined by RFC-6902 (https://www.rfc-editor.org/rfc/rfc6902).
JSON Example
                                    {
    "op": "string",
    "path": "string",
    "from": "string"
}
            
            
                                    string
                
                
            
        
        
                op            
                            Required
                    The patch operation to be performed over the target entity.
                Possible values are :
                                    add, 
                                    remove, 
                                    replace, 
                                    move, 
                            
        
    
            
            
                                    string
                
                
            
        
        
                path            
                            Required
                    A JSON pointer to the target property.
            
            
                                    object
                
                
            
        
        
                value            
                            Optional
                    The value to be used within the operations
            
            
                                    string
                
                
            
        
        
                from            
                            Optional
                    A string containing a JSON Pointer value. Typically used with move operation.
