Skip to main content

JsonPatch

A JSONPatch document as defined by RFC 6902 - JSON Patch

Properties

NameTypeDescriptionNotes
operations[]JsonPatchOperationOperations 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, )
]
)

[Back to top]