Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 643 Bytes

ScimPatchOperation.md

File metadata and controls

25 lines (14 loc) · 643 Bytes

ScimPatchOperation

Patch operation that is used to update the information.

Properties

Name Type Description Notes
op OpEnum The method that should be used in the operation.
path String The path specifying the attribute that should be updated. [optional]
value String The value that should be updated. Required if `op` is `add` or `replace`. [optional]

Enum: OpEnum

Name Value
ADD "add"
REMOVE "remove"
REPLACE "replace"