From 32f69471bb9306e4d1c61cb0021f09318781af01 Mon Sep 17 00:00:00 2001 From: Sergio Moya <1083296+smoya@users.noreply.github.com> Date: Fri, 17 Jun 2022 17:19:11 +0200 Subject: [PATCH] feat: add tags field to Server Object --- definitions/2.5.0/server.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/definitions/2.5.0/server.json b/definitions/2.5.0/server.json index 556795f6..f469bbb6 100644 --- a/definitions/2.5.0/server.json +++ b/definitions/2.5.0/server.json @@ -36,6 +36,13 @@ }, "bindings": { "$ref": "http://asyncapi.com/definitions/2.5.0/bindingsObject.json" + }, + "tags": { + "type": "array", + "items": { + "$ref": "http://asyncapi.com/definitions/2.5.0/tag.json" + }, + "uniqueItems": true } }, "$schema": "http://json-schema.org/draft-07/schema#",