From 8f7da013730ff06b64eac879fe864301036360a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Urba=C5=84czyk?= Date: Tue, 7 Feb 2023 16:44:46 +0100 Subject: [PATCH] feat: channel's servers field allows references (#318) --- definitions/3.0.0/channel.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/definitions/3.0.0/channel.json b/definitions/3.0.0/channel.json index 6849307a..bf715ede 100644 --- a/definitions/3.0.0/channel.json +++ b/definitions/3.0.0/channel.json @@ -34,9 +34,9 @@ }, "servers": { "type": "array", - "description": "The names of the servers on which this channel is available. If absent or empty then this channel must be available on all servers.", + "description": "The references of the servers on which this channel is available. If absent or empty then this channel must be available on all servers.", "items": { - "type": "string" + "$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json" }, "uniqueItems": true },