Skip to content

Commit

Permalink
Merge branch 'next-major-spec' into fixbindref
Browse files Browse the repository at this point in the history
  • Loading branch information
derberg authored Nov 13, 2023
2 parents a86a07c + 3df2a2e commit bf40fe1
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 4 deletions.
17 changes: 16 additions & 1 deletion definitions/3.0.0/components.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,21 @@
}
}
},
"operations": {
"type": "object",
"patternProperties": {
"^[\\w\\d\\.\\-_]+$": {
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/operation.json"
}
]
}
}
},
"messages": {
"type": "object",
"patternProperties": {
Expand Down Expand Up @@ -281,4 +296,4 @@
},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://asyncapi.com/definitions/3.0.0/components.json"
}
}
4 changes: 2 additions & 2 deletions 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": "6.0.0-next-major-spec.11",
"version": "6.0.0-next-major-spec.12",
"description": "AsyncAPI schema versions",
"main": "index.js",
"types": "index.d.ts",
Expand Down
15 changes: 15 additions & 0 deletions schemas/3.0.0-without-$id.json
Original file line number Diff line number Diff line change
Expand Up @@ -5994,6 +5994,21 @@
}
}
},
"operations": {
"type": "object",
"patternProperties": {
"^[\\w\\d\\.\\-_]+$": {
"oneOf": [
{
"$ref": "#/definitions/Reference"
},
{
"$ref": "#/definitions/operation"
}
]
}
}
},
"messages": {
"type": "object",
"patternProperties": {
Expand Down
15 changes: 15 additions & 0 deletions schemas/3.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -6084,6 +6084,21 @@
}
}
},
"operations": {
"type": "object",
"patternProperties": {
"^[\\w\\d\\.\\-_]+$": {
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/operation.json"
}
]
}
}
},
"messages": {
"type": "object",
"patternProperties": {
Expand Down

0 comments on commit bf40fe1

Please sign in to comment.