PatchBody

The structure for the body of a PATCH request.

JSON representation
{
  "schemas": [
    string
  ],
  "Operations": [
    {
      object (Operation)
    }
  ]
}
Fields
schemas[]

string

Required. This attribute must contain the URI value of urn:ietf:params:scim:api:messages:2.0:PatchOp.

Operations[]

object (Operation)

Required. Each operation represents a single action to be applied to the SCIM resource.

Operation

The operation to perform.

JSON representation
{
  "op": string,
  "path": string,
  "value": value
}
Fields
op

string

Required. The type of operation to perform.

path

string

Attribute path describing the target of the operation. Examples of valid paths: "path":"members" "path":"name.familyName" "path":"emails[type eq \"work\"]"

value

value (Value format)

Must be set for add or replace operations. Can be a single value, an object (containing sub-attributes of a complex attribute), or an array depending on the target path.