Skip to content

Commit

Permalink
chore(release): v5.0.0-next-major-spec.7 (#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
asyncapi-bot authored Feb 7, 2023
1 parent 40257df commit a74c78f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 15 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.6",
"version": "5.0.0-next-major-spec.7",
"description": "AsyncAPI schema versions",
"main": "index.js",
"types": "index.d.ts",
Expand Down
37 changes: 24 additions & 13 deletions schemas/3.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,14 @@
"$id": "http://asyncapi.com/definitions/3.0.0/serverVariables.json",
"type": "object",
"additionalProperties": {
"$ref": "http://asyncapi.com/definitions/3.0.0/serverVariable.json"
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/serverVariable.json"
}
]
}
},
"http://asyncapi.com/definitions/3.0.0/serverVariable.json": {
Expand Down Expand Up @@ -1259,10 +1266,7 @@
"$ref": "http://asyncapi.com/definitions/3.0.0/channelMessages.json"
},
"parameters": {
"type": "object",
"additionalProperties": {
"$ref": "http://asyncapi.com/definitions/3.0.0/parameter.json"
}
"$ref": "http://asyncapi.com/definitions/3.0.0/parameters.json"
},
"title": {
"type": "string",
Expand Down Expand Up @@ -2354,6 +2358,21 @@
}
}
},
"http://asyncapi.com/definitions/3.0.0/parameters.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/parameters.json",
"type": "object",
"additionalProperties": {
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/parameter.json"
}
]
},
"description": "JSON objects describing re-usable channel parameters."
},
"http://asyncapi.com/definitions/3.0.0/parameter.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/parameter.json",
"additionalProperties": false,
Expand Down Expand Up @@ -3843,14 +3862,6 @@
"$ref": "http://asyncapi.com/definitions/3.0.0/message.json"
},
"description": "JSON objects describing the messages being consumed and produced by the API."
},
"http://asyncapi.com/definitions/3.0.0/parameters.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/parameters.json",
"type": "object",
"additionalProperties": {
"$ref": "http://asyncapi.com/definitions/3.0.0/parameter.json"
},
"description": "JSON objects describing re-usable channel parameters."
}
},
"description": "!!Auto generated!! \n Do not manually edit. "
Expand Down

0 comments on commit a74c78f

Please sign in to comment.