{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BackendClusterAuthenticationSaslPlainSensitiveDataAware", "title": "BackendClusterAuthenticationSaslPlainSensitiveDataAware", "description": "SASL/PLAIN authentication scheme for the backend cluster without requiring sensitive password data.\n", "type": "object", "properties": { "type": { "type": "string", "const": "sasl_plain" }, "username": { "$ref": "#/components/schemas/GatewaySecretReferenceOrLiteral" }, "password": { "$ref": "#/components/schemas/GatewaySecret" } }, "additionalProperties": false, "required": [ "type", "username" ] }