{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ScimPatchRequest", "title": "ScimPatchRequest", "type": "object", "description": "A SCIM 2.0 PatchOp request for partial resource updates.", "properties": { "schemas": { "type": "array", "description": "SCIM schema URN identifying this as a PatchOp request.", "items": { "type": "string" }, "example": [ "urn:ietf:params:scim:api:messages:2.0:PatchOp" ] }, "Operations": { "type": "array", "description": "List of PATCH operations to perform.", "items": { "$ref": "#/components/schemas/ScimPatchOperation" } } } }