ValidatePatchOperationValue validates an individual operation and its related value.
(operation string, operationValue map[string]interface{})
| 114 | |
| 115 | // ValidatePatchOperationValue validates an individual operation and its related value. |
| 116 | func (s Schema) ValidatePatchOperationValue(operation string, operationValue map[string]interface{}) *errors.ScimError { |
| 117 | return s.ValidatePatchOperation(operation, operationValue, false) |
| 118 | } |
| 119 | |
| 120 | func (s Schema) getRawAttributes() []map[string]interface{} { |
| 121 | attributes := make([]map[string]interface{}, len(s.Attributes)) |
nothing calls this directly
no test coverage detected