mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.0 KiB
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 |
|
/tools/sdk/python/beta/models/json-patch |
|
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.Json Patch Operation(
op = 'replace',
path = '/description',
value = New description, )
]
)