Jsonpatch
A JSONPatch document as defined by RFC 6902 - JSON Patch
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| operations | []Jsonpatchoperation | Operations to be applied | [optional] |
| } |
Example
from sailpoint.sim_integrations.models.jsonpatch import Jsonpatch
jsonpatch = Jsonpatch(
operations=[
sailpoint.sim_integrations.models.json_patch_operation.Json Patch Operation(
op = 'replace',
path = '/description',
value = New description, )
]
)