contentstack · Schema

ScimPatchOperation

A single SCIM PATCH operation.

Properties

Name Type Description
op string The operation type.
path string The attribute path to target for the operation.
value object The value to apply for add or replace operations.
View JSON Schema on GitHub

JSON Schema

contentstack-scimpatchoperation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimPatchOperation",
  "title": "ScimPatchOperation",
  "type": "object",
  "description": "A single SCIM PATCH operation.",
  "required": [
    "op"
  ],
  "properties": {
    "op": {
      "type": "string",
      "description": "The operation type.",
      "enum": [
        "add",
        "remove",
        "replace"
      ]
    },
    "path": {
      "type": "string",
      "description": "The attribute path to target for the operation."
    },
    "value": {
      "description": "The value to apply for add or replace operations."
    }
  }
}