SAP BI Tools · Schema

LogonRequest

Authentication credentials for logging on to the BI Platform

AnalyticsBusiness IntelligenceData VisualizationReportingSAP

Properties

Name Type Description
userName string The username for authentication
password string The password for authentication
auth string The authentication type (secEnterprise, secLDAP, secWinAD)
View JSON Schema on GitHub

JSON Schema

sap-bi-tools-logonrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogonRequest",
  "title": "LogonRequest",
  "type": "object",
  "description": "Authentication credentials for logging on to the BI Platform",
  "required": [
    "userName",
    "password",
    "auth"
  ],
  "properties": {
    "userName": {
      "type": "string",
      "description": "The username for authentication"
    },
    "password": {
      "type": "string",
      "description": "The password for authentication",
      "format": "password"
    },
    "auth": {
      "type": "string",
      "description": "The authentication type (secEnterprise, secLDAP, secWinAD)",
      "enum": [
        "secEnterprise",
        "secLDAP",
        "secWinAD"
      ],
      "default": "secEnterprise"
    }
  }
}