{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VirtualClusterAuthenticationPrincipal", "title": "VirtualClusterAuthenticationPrincipal", "description": "A principal for authentication containing username and password.", "type": "object", "properties": { "username": { "$ref": "#/components/schemas/GatewaySecretReferenceOrLiteral" }, "password": { "$ref": "#/components/schemas/GatewaySecret" } }, "required": [ "username", "password" ] }