Amplitude · JSON Structure

Scim Api Scim Patch Request Structure

ScimPatchRequest schema from Amplitude SCIM API

Type: object Properties: 2 Required: 2
A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

ScimPatchRequest is a JSON Structure definition published by Amplitude, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

schemas Operations

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amplitude/refs/heads/main/json-structure/scim-api-scim-patch-request-structure.json",
  "name": "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"
  ]
}