Properties
| Name | Type | Description |
|---|---|---|
| op | string | The operation type. |
| path | string | The attribute path to target for the operation. |
| value | object | The value to apply for add or replace operations. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScimPatchOperation",
"title": "ScimPatchOperation",
"type": "object",
"description": "A single SCIM PATCH operation.",
"required": [
"op"
],
"properties": {
"op": {
"type": "string",
"description": "The operation type.",
"enum": [
"add",
"remove",
"replace"
]
},
"path": {
"type": "string",
"description": "The attribute path to target for the operation."
},
"value": {
"description": "The value to apply for add or replace operations."
}
}
}