{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BackendClusterAuthenticationScheme", "title": "BackendClusterAuthenticationScheme", "discriminator": { "propertyName": "type", "mapping": { "anonymous": "#/components/schemas/BackendClusterAuthenticationAnonymous", "sasl_plain": "#/components/schemas/BackendClusterAuthenticationSaslPlain", "sasl_scram": "#/components/schemas/BackendClusterAuthenticationSaslScram" } }, "oneOf": [ { "$ref": "#/components/schemas/BackendClusterAuthenticationAnonymous" }, { "$ref": "#/components/schemas/BackendClusterAuthenticationSaslPlain" }, { "$ref": "#/components/schemas/BackendClusterAuthenticationSaslScram" } ] }