{ "$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" } } }