Skip to content

Commit

Permalink
chore(release): v5.0.0-next-major-spec.20 (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
asyncapi-bot authored May 4, 2023
1 parent b48eb67 commit 7e989b3
Show file tree
Hide file tree
Showing 3 changed files with 125 additions and 20 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@asyncapi/specs",
"version": "5.0.0-next-major-spec.19",
"version": "5.0.0-next-major-spec.20",
"description": "AsyncAPI schema versions",
"main": "index.js",
"types": "index.d.ts",
Expand Down
141 changes: 123 additions & 18 deletions schemas/3.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -4901,6 +4901,22 @@
"channel": {
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
"messages": {
"type": "array",
"items": {
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
}
},
"reply": {
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/operationReply.json"
}
]
},
"traits": {
"type": "array",
"items": {
Expand Down Expand Up @@ -4958,6 +4974,61 @@
}
}
},
"http://asyncapi.com/definitions/3.0.0/operationReply.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/operationReply.json",
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^x-[\\w\\d\\.\\x2d_]+$": {
"$ref": "http://asyncapi.com/definitions/3.0.0/specificationExtension.json"
}
},
"properties": {
"address": {
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/operationReplyAddress.json"
}
]
},
"channel": {
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
"messages": {
"type": "array",
"items": {
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
}
}
}
},
"http://asyncapi.com/definitions/3.0.0/operationReplyAddress.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/operationReplyAddress.json",
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^x-[\\w\\d\\.\\x2d_]+$": {
"$ref": "http://asyncapi.com/definitions/3.0.0/specificationExtension.json"
}
},
"required": [
"location"
],
"properties": {
"location": {
"type": "string",
"description": "A runtime expression that specifies the location of the reply address.",
"pattern": "^\\$message\\.(header|payload)#(\\/(([^\\/~])|(~[01]))*)*"
},
"description": {
"type": "string",
"description": "An optional description of the address. CommonMark is allowed."
}
}
},
"http://asyncapi.com/definitions/3.0.0/operationTrait.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/operationTrait.json",
"type": "object",
Expand Down Expand Up @@ -6008,6 +6079,36 @@
"$ref": "http://asyncapi.com/definitions/3.0.0/messageTrait.json"
}
},
"replies": {
"type": "object",
"patternProperties": {
"^[\\w\\d\\.\\-_]+$": {
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/operationReply.json"
}
]
}
}
},
"replyAddresses": {
"type": "object",
"patternProperties": {
"^[\\w\\d\\.\\-_]+$": {
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/operationReplyAddress.json"
}
]
}
}
},
"serverBindings": {
"type": "object",
"additionalProperties": {
Expand All @@ -6034,28 +6135,32 @@
},
"tags": {
"type": "object",
"additionalProperties": {
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/tag.json"
}
]
"patternProperties": {
"^[\\w\\d\\.\\-_]+$": {
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/tag.json"
}
]
}
}
},
"externalDocs": {
"type": "object",
"additionalProperties": {
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/externalDocs.json"
}
]
"patternProperties": {
"^[\\w\\d\\.\\-_]+$": {
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/externalDocs.json"
}
]
}
}
}
}
Expand Down

0 comments on commit 7e989b3

Please sign in to comment.