{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SchemaRegistryConfluent", "title": "SchemaRegistryConfluent", "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/SchemaRegistryConfluentConfig" }, "labels": { "$ref": "#/components/schemas/Labels" } }, "required": [ "name", "type", "config" ] }