SAP BI Tools · Schema

ScimGroup

A team (group) record conforming to SCIM 2.0 protocol. Used for organizing users and managing content access control.

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
id string The unique identifier assigned to the team
displayName string The display name of the team
members array The members of the team
View JSON Schema on GitHub

JSON Schema

sap-bi-tools-scimgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimGroup",
  "title": "ScimGroup",
  "type": "object",
  "description": "A team (group) record conforming to SCIM 2.0 protocol. Used for organizing users and managing content access control.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier assigned to the team"
    },
    "displayName": {
      "type": "string",
      "description": "The display name of the team"
    },
    "members": {
      "type": "array",
      "description": "The members of the team",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "description": "The member user ID"
          },
          "display": {
            "type": "string",
            "description": "The member display name"
          }
        }
      }
    }
  }
}