{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BootstrapServers", "title": "BootstrapServers", "description": "A list of cluster bootstrap servers in the format address:port.", "type": "array", "items": { "type": "string", "description": "Endpoint in address:port format.", "pattern": "^(([a-zA-Z0-9\\.\\-]+)|\\[([a-fA-F0-9:]+)\\]):\\d+$", "minLength": 1 }, "minItems": 1 }