{ "$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" ] }