Amplitude · Schema

ScimPatchRequest

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

amplitude-scimpatchrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimPatchRequest",
  "title": "ScimPatchRequest",
  "type": "object",
  "required": [
    "schemas",
    "Operations"
  ],
  "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."
          }
        }
      }
    }
  }
}