Skip to main content

JsonPatchOperations

A limited JSONPatch Operation as defined by RFC 6902 - JSON Patch

Properties

NameTypeDescriptionNotes
opEnum [ 'add', 'remove', 'replace' ]The operation to be performed[required]
pathstrA string representing the target path to an element to be affected by the operation[required]
valueJsonPatchOperationsValue[optional]
}

Example

from sailpoint.beta.models.json_patch_operations import JsonPatchOperations

json_patch_operations = JsonPatchOperations(
op='replace',
path='/dismissed',
value=true
)

[Back to top]