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.beta.models.json_patch import JsonPatch
json_patch = JsonPatch(
operations=[
sailpoint.beta.models.json_patch_operation.JsonPatchOperation(
op = 'replace',
path = '/description',
value = New description, )
]
)