diff --git a/definitions/3.0.0/channel.json b/definitions/3.0.0/channel.json index bd7d9e63..6849307a 100644 --- a/definitions/3.0.0/channel.json +++ b/definitions/3.0.0/channel.json @@ -20,9 +20,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", diff --git a/definitions/3.0.0/operation.json b/definitions/3.0.0/operation.json index d29882cf..bd99aa68 100644 --- a/definitions/3.0.0/operation.json +++ b/definitions/3.0.0/operation.json @@ -51,11 +51,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", diff --git a/definitions/3.0.0/operationTrait.json b/definitions/3.0.0/operationTrait.json index 6ee4172a..28a12986 100644 --- a/definitions/3.0.0/operationTrait.json +++ b/definitions/3.0.0/operationTrait.json @@ -13,6 +13,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" }, diff --git a/definitions/3.0.0/server.json b/definitions/3.0.0/server.json index 20371d0f..5b4fbb4e 100644 --- a/definitions/3.0.0/server.json +++ b/definitions/3.0.0/server.json @@ -15,8 +15,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",