mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 04:19:42 +00:00
16 lines
373 B
YAML
16 lines
373 B
YAML
type: object
|
|
description: A JSONPatch document as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)
|
|
properties:
|
|
operations:
|
|
description: Operations to be applied
|
|
type: array
|
|
items:
|
|
$ref: './JsonPatchOperation.yaml'
|
|
example: >-
|
|
[
|
|
{
|
|
"op": "replace",
|
|
"path": "/description",
|
|
"value": "A new description"
|
|
}
|
|
] |