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

1.1 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-operations JsonPatchOperations JsonPatchOperations JsonPatchOperations pythonsdk
python
Python
sdk
JsonPatchOperations
BetaJsonPatchOperations
/tools/sdk/python/beta/models/json-patch-operations
SDK
Software Development Kit
JsonPatchOperations
BetaJsonPatchOperations

JsonPatchOperations

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

Properties

Name Type Description Notes
op Enum [ 'add', 'remove', 'replace' ] The operation to be performed [required]
path str A string representing the target path to an element to be affected by the operation [required]
value JsonPatchOperationsValue [optional]
}

Example

from sailpoint.beta.models.json_patch_operations import JsonPatchOperations

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

[Back to top]