V3 Patch Source

I have tried using the request Body from update-source | SailPoint Developer Community but was getting errors

{
  "operations": [
    {
      "op": "replace",
      "path": "/description",
      "value": "New description"
    }
  ]
}

What I found worked was from https://community.sailpoint.com/t5/IdentityNow-Articles/IdentityNow-Rule-Guide/ta-p/76665

[
    {
        "op": "add",
        "path": "/connectorAttributes/jdbcProvisionRule",
        "value": "Example Rule"
    }
]

Is there any reason for the difference?

Hello @ethompson
This is a valid point. I think there is a mistake in the documentation as this endpoint is expecting of JSON patch and the proper format is the one you found.
I will reach out the dev team to make it right.