Kong · Schema

SchemaRegistryConfluentSensitiveDataAware

A Confluent schema registry.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name string The unique name of the schema registry.
description string A human-readable description of the virtual cluster.
type string The type of the schema registry.
config object The configuration of the schema registry.
labels object
View JSON Schema on GitHub

JSON Schema

kong-schemaregistryconfluentsensitivedataaware-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchemaRegistryConfluentSensitiveDataAware",
  "title": "SchemaRegistryConfluentSensitiveDataAware",
  "description": "A Confluent schema registry.",
  "type": "object",
  "properties": {
    "name": {
      "description": "The unique name of the schema registry.",
      "type": "string",
      "maxLength": 255,
      "minLength": 1,
      "x-unicode-pattern": "^[\\p{L}\\p{N}][\\p{L}\\p{N} _\\-\\.:/+']*[\\p{L}\\p{N}]$"
    },
    "description": {
      "description": "A human-readable description of the virtual cluster.",
      "type": "string",
      "default": "",
      "maxLength": 512
    },
    "type": {
      "description": "The type of the schema registry.",
      "type": "string",
      "const": "confluent"
    },
    "config": {
      "description": "The configuration of the schema registry.",
      "type": "object",
      "$ref": "#/components/schemas/SchemaRegistryConfluentConfigSensitiveDataAware"
    },
    "labels": {
      "$ref": "#/components/schemas/Labels"
    }
  },
  "required": [
    "name",
    "type",
    "config"
  ]
}