PatchRequest
SCIM PATCH operation as defined in RFC 7644 Section 3.5.2
Operations object[]required
A list of patch operations to be performed
Possible values: >= 1
Array [
opstringrequired
The operation to perform
Possible values: [add, remove, replace]
pathstring
The attribute path to operate on. Optional for add and replace when the value contains the full attribute. Required for remove.
value object
The value to set or add. Required for add and replace operations. May be a string, number, boolean, object, or array depending on the attribute.
- string
- number
- boolean
- object
- undefined[]
string
]
schemasstring[]required
The schema URI for PATCH operations
Possible values: [urn:ietf:params:scim:api:messages:2.0:PatchOp]
PatchRequest
{
"Operations": [
{
"op": "add",
"path": "string",
"value": "string"
}
],
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
]
}