Kong · Schema

SchemaRegistryReferenceByName

Reference a schema registry by its unique name.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name string The unique name of the schema registry.
View JSON Schema on GitHub

JSON Schema

kong-schemaregistryreferencebyname-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchemaRegistryReferenceByName",
  "title": "SchemaRegistryReferenceByName",
  "description": "Reference a schema registry by its unique name.",
  "type": "object",
  "properties": {
    "name": {
      "description": "The unique name of the schema registry.",
      "type": "string",
      "maxLength": 255,
      "minLength": 1
    }
  },
  "required": [
    "name"
  ]
}