Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/JsonPatch.md
2025-02-20 12:59:19 -05:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-json-patch JsonPatch JsonPatch JsonPatch pythonsdk
python
Python
sdk
JsonPatch
BetaJsonPatch
/tools/sdk/python/beta/models/json-patch
SDK
Software Development Kit
JsonPatch
BetaJsonPatch

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, )
                    ]
)

[Back to top]