BOBJUser

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
SI_ID integer User system identifier
SI_NAME string Username
SI_DESCRIPTION string User description
SI_EMAIL_ADDRESS string User email address
SI_DISABLED boolean Whether the user account is disabled
SI_NAMEDUSER boolean Whether the user is a named user
View JSON Schema on GitHub

JSON Schema

sap-bi-bobjuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BOBJUser",
  "title": "BOBJUser",
  "type": "object",
  "properties": {
    "SI_ID": {
      "type": "integer",
      "description": "User system identifier"
    },
    "SI_NAME": {
      "type": "string",
      "description": "Username"
    },
    "SI_DESCRIPTION": {
      "type": "string",
      "description": "User description"
    },
    "SI_EMAIL_ADDRESS": {
      "type": "string",
      "format": "email",
      "description": "User email address"
    },
    "SI_DISABLED": {
      "type": "boolean",
      "description": "Whether the user account is disabled"
    },
    "SI_NAMEDUSER": {
      "type": "boolean",
      "description": "Whether the user is a named user"
    }
  }
}