Kong · Schema

SchemaRegistryAuthenticationBasic

Basic authentication scheme for the schema registry with username and password.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
username object
password object
View JSON Schema on GitHub

JSON Schema

kong-schemaregistryauthenticationbasic-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchemaRegistryAuthenticationBasic",
  "title": "SchemaRegistryAuthenticationBasic",
  "description": "Basic authentication scheme for the schema registry with username and password.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "basic"
    },
    "username": {
      "$ref": "#/components/schemas/GatewaySecretReferenceOrLiteral"
    },
    "password": {
      "$ref": "#/components/schemas/GatewaySecret"
    }
  },
  "required": [
    "type",
    "username",
    "password"
  ]
}