kubectl patch --help gives an example where you can patch a specific element with a specific operation:
kubectl patch pod valid-pod --type='json' -p='[{"op": "replace", "path": "/spec/containers/0/image", "value":"new
image"}]'
However, there's no enumeration of possible op values. What operations are available?