SAP BI Tools · Schema

ScimUser

A user record conforming to SCIM 2.0 protocol. Contains user profile attributes, roles, and team memberships.

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
id string The unique identifier assigned to the user
userName string The login username for the user
name object The user's name components
displayName string The display name of the user
emails array The email addresses for the user
active boolean Whether the user account is active
roles array The roles assigned to the user
groups array The teams the user belongs to
View JSON Schema on GitHub

JSON Schema

sap-bi-tools-scimuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimUser",
  "title": "ScimUser",
  "type": "object",
  "description": "A user record conforming to SCIM 2.0 protocol. Contains user profile attributes, roles, and team memberships.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier assigned to the user"
    },
    "userName": {
      "type": "string",
      "description": "The login username for the user"
    },
    "name": {
      "type": "object",
      "description": "The user's name components",
      "properties": {
        "givenName": {
          "type": "string",
          "description": "The first name of the user"
        },
        "familyName": {
          "type": "string",
          "description": "The last name of the user"
        },
        "formatted": {
          "type": "string",
          "description": "The full formatted name of the user"
        }
      }
    },
    "displayName": {
      "type": "string",
      "description": "The display name of the user"
    },
    "emails": {
      "type": "array",
      "description": "The email addresses for the user",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "format": "email",
            "description": "The email address"
          },
          "primary": {
            "type": "boolean",
            "description": "Whether this is the primary email"
          }
        }
      }
    },
    "active": {
      "type": "boolean",
      "description": "Whether the user account is active"
    },
    "roles": {
      "type": "array",
      "description": "The roles assigned to the user",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "description": "The role identifier"
          }
        }
      }
    },
    "groups": {
      "type": "array",
      "description": "The teams the user belongs to",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "description": "The team (group) identifier"
          },
          "display": {
            "type": "string",
            "description": "The team display name"
          }
        }
      }
    }
  }
}