{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ScimPatchRequest", "title": "ScimPatchRequest", "type": "object", "required": [ "schemas", "Operations" ], "properties": { "schemas": { "type": "array", "items": { "type": "string" }, "description": "The SCIM patch operation schema URI, typically urn:ietf:params:scim:api:messages:2.0:PatchOp." }, "Operations": { "type": "array", "description": "Array of patch operations to apply.", "items": { "type": "object", "properties": { "op": { "type": "string", "description": "The operation to perform.", "enum": [ "add", "remove", "replace" ] }, "path": { "type": "string", "description": "The attribute path to apply the operation to." }, "value": { "description": "The value to use for the operation." } } } } } }