User

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
id string User unique identifier
userName string Login username
displayName string Display name
email string Email address
roles array Assigned roles
active boolean Whether the user is active
createdTime string When the user was created
View JSON Schema on GitHub

JSON Schema

sap-bi-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "User unique identifier"
    },
    "userName": {
      "type": "string",
      "description": "Login username"
    },
    "displayName": {
      "type": "string",
      "description": "Display name"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address"
    },
    "roles": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Assigned roles"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the user is active"
    },
    "createdTime": {
      "type": "string",
      "format": "date-time",
      "description": "When the user was created"
    }
  }
}