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.custom_user_levels.models.jsonpatch import Jsonpatch

jsonpatch = Jsonpatch(
operations=[
sailpoint.custom_user_levels.models.json_patch_operation.Json Patch Operation(
op = 'replace',
path = '/description',
value = New description, )
]
)

[Back to top]