Amplitude · Schema

ScimGroupRequest

ScimGroupRequest schema from Amplitude SCIM API

A/B TestingAnalyticsExperimentationFeature FlagsProduct AnalyticsUser Behavior

Properties

Name Type Description
schemas array The SCIM schema URIs.
displayName string The display name of the group.
members array Array of initial group members.
View JSON Schema on GitHub

JSON Schema

scim-api-scim-group-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-group-request-schema.json",
  "title": "ScimGroupRequest",
  "description": "ScimGroupRequest schema from Amplitude SCIM API",
  "type": "object",
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The SCIM schema URIs."
    },
    "displayName": {
      "type": "string",
      "description": "The display name of the group."
    },
    "members": {
      "type": "array",
      "description": "Array of initial group members.",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "description": "The member user ID."
          }
        }
      }
    }
  },
  "required": [
    "schemas",
    "displayName"
  ]
}