{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BackendClusterAuthenticationSaslScram", "title": "BackendClusterAuthenticationSaslScram", "description": "SASL/SCRAM authentication scheme for the backend cluster.", "type": "object", "properties": { "type": { "type": "string", "const": "sasl_scram" }, "algorithm": { "description": "The algorithm used for SASL/SCRAM authentication.", "type": "string", "enum": [ "sha256", "sha512" ], "x-speakeasy-unknown-values": "allow" }, "username": { "$ref": "#/components/schemas/GatewaySecretReferenceOrLiteral" }, "password": { "$ref": "#/components/schemas/GatewaySecret" } }, "additionalProperties": false, "required": [ "type", "username", "algorithm", "password" ] }