From 934583ec71698aa9de8c1180fa9b9edfe560a0fa Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Tue, 7 Feb 2023 16:41:49 +0100 Subject: [PATCH] chore(release): v5.0.0-next-major-spec.4 (#323) --- package-lock.json | 2 +- package.json | 2 +- schemas/3.0.0.json | 34 ++++++++++++++++++++++++++++++---- 3 files changed, 32 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 35eacc29..4fbf1d8e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@asyncapi/specs", - "version": "5.0.0-next-major-spec.3", + "version": "5.0.0-next-major-spec.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 78756c04..f8258590 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@asyncapi/specs", - "version": "5.0.0-next-major-spec.3", + "version": "5.0.0-next-major-spec.4", "description": "AsyncAPI schema versions", "main": "index.js", "types": "index.d.ts", diff --git a/schemas/3.0.0.json b/schemas/3.0.0.json index 69e3d3fd..c92057f3 100644 --- a/schemas/3.0.0.json +++ b/schemas/3.0.0.json @@ -260,8 +260,17 @@ "url": { "type": "string" }, + "title": { + "type": "string", + "description": "A human-friendly title for the server." + }, + "summary": { + "type": "string", + "description": "A brief summary of the server." + }, "description": { - "type": "string" + "type": "string", + "description": "A longer description of the server. CommonMark is allowed." }, "protocol": { "type": "string", @@ -702,9 +711,17 @@ "$ref": "http://asyncapi.com/definitions/3.0.0/parameter.json" } }, + "title": { + "type": "string", + "description": "A human-friendly title for the channel." + }, + "summary": { + "type": "string", + "description": "A brief summary of the channel." + }, "description": { "type": "string", - "description": "A description of the channel." + "description": "A longer description of the channel. CommonMark is allowed." }, "servers": { "type": "array", @@ -2553,11 +2570,17 @@ ] } }, + "title": { + "type": "string", + "description": "A human-friendly title for the operation." + }, "summary": { - "type": "string" + "type": "string", + "description": "A brief summary of the operation." }, "description": { - "type": "string" + "type": "string", + "description": "A longer description of the operation. CommonMark is allowed." }, "security": { "type": "array", @@ -2596,6 +2619,9 @@ "channel": { "$ref": "http://asyncapi.com/definitions/3.0.0/operation.json#/properties/channel" }, + "title": { + "$ref": "http://asyncapi.com/definitions/3.0.0/operation.json#/properties/title" + }, "summary": { "$ref": "http://asyncapi.com/definitions/3.0.0/operation.json#/properties/summary" },