contentstack · Schema

ScimPatchRequest

A SCIM 2.0 PatchOp request for partial resource updates.

Properties

Name Type Description
schemas array SCIM schema URN identifying this as a PatchOp request.
Operations array List of PATCH operations to perform.
View JSON Schema on GitHub

JSON Schema

contentstack-scimpatchrequest-schema.json Raw ↑
{
  "$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"
      }
    }
  }
}