Amplitude · Schema

ScimPatchRequest

ScimPatchRequest schema from Amplitude SCIM API

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
schemas array The SCIM patch operation schema URI, typically urn:ietf:params:scim:api:messages:2.0:PatchOp.
Operations array Array of patch operations to apply.
View JSON Schema on GitHub

JSON Schema

scim-api-scim-patch-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amplitude/refs/heads/main/json-schema/scim-api-scim-patch-request-schema.json",
  "title": "ScimPatchRequest",
  "description": "ScimPatchRequest schema from Amplitude SCIM API",
  "type": "object",
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The SCIM patch operation schema URI, typically urn:ietf:params:scim:api:messages:2.0:PatchOp."
    },
    "Operations": {
      "type": "array",
      "description": "Array of patch operations to apply.",
      "items": {
        "type": "object",
        "properties": {
          "op": {
            "type": "string",
            "description": "The operation to perform.",
            "enum": [
              "add",
              "remove",
              "replace"
            ]
          },
          "path": {
            "type": "string",
            "description": "The attribute path to apply the operation to."
          },
          "value": {
            "description": "The value to use for the operation."
          }
        }
      }
    }
  },
  "required": [
    "schemas",
    "Operations"
  ]
}