Skip to content

Commit

Permalink
chore(release): v5.0.0-next-major-spec.3 (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
asyncapi-bot authored Feb 6, 2023
1 parent 2a8ea92 commit b87f2d3
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 49 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.2",
"version": "5.0.0-next-major-spec.3",
"description": "AsyncAPI schema versions",
"main": "index.js",
"types": "index.d.ts",
Expand Down
114 changes: 67 additions & 47 deletions schemas/3.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@
},
"components": {
"$ref": "http://asyncapi.com/definitions/3.0.0/components.json"
},
"tags": {
"type": "array",
"items": {
"$ref": "http://asyncapi.com/definitions/3.0.0/tag.json"
},
"uniqueItems": true
},
"externalDocs": {
"$ref": "http://asyncapi.com/definitions/3.0.0/externalDocs.json"
}
},
"definitions": {
Expand Down Expand Up @@ -89,6 +99,16 @@
},
"license": {
"$ref": "http://asyncapi.com/definitions/3.0.0/license.json"
},
"tags": {
"type": "array",
"items": {
"$ref": "http://asyncapi.com/definitions/3.0.0/tag.json"
},
"uniqueItems": true
},
"externalDocs": {
"$ref": "http://asyncapi.com/definitions/3.0.0/externalDocs.json"
}
}
},
Expand Down Expand Up @@ -143,6 +163,53 @@
}
}
},
"http://asyncapi.com/definitions/3.0.0/tag.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/tag.json",
"type": "object",
"additionalProperties": false,
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"externalDocs": {
"$ref": "http://asyncapi.com/definitions/3.0.0/externalDocs.json"
}
},
"patternProperties": {
"^x-[\\w\\d\\.\\x2d_]+$": {
"$ref": "http://asyncapi.com/definitions/3.0.0/specificationExtension.json"
}
}
},
"http://asyncapi.com/definitions/3.0.0/externalDocs.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/externalDocs.json",
"type": "object",
"additionalProperties": false,
"description": "information about external documentation",
"required": [
"url"
],
"properties": {
"description": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
}
},
"patternProperties": {
"^x-[\\w\\d\\.\\x2d_]+$": {
"$ref": "http://asyncapi.com/definitions/3.0.0/specificationExtension.json"
}
}
},
"http://asyncapi.com/definitions/3.0.0/servers.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/servers.json",
"description": "An object representing multiple servers.",
Expand Down Expand Up @@ -1181,29 +1248,6 @@
},
"default": true
},
"http://asyncapi.com/definitions/3.0.0/externalDocs.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/externalDocs.json",
"type": "object",
"additionalProperties": false,
"description": "information about external documentation",
"required": [
"url"
],
"properties": {
"description": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
}
},
"patternProperties": {
"^x-[\\w\\d\\.\\x2d_]+$": {
"$ref": "http://asyncapi.com/definitions/3.0.0/specificationExtension.json"
}
}
},
"http://asyncapi.com/definitions/3.0.0/correlationId.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/correlationId.json",
"type": "object",
Expand All @@ -1228,30 +1272,6 @@
}
}
},
"http://asyncapi.com/definitions/3.0.0/tag.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/tag.json",
"type": "object",
"additionalProperties": false,
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"externalDocs": {
"$ref": "http://asyncapi.com/definitions/3.0.0/externalDocs.json"
}
},
"patternProperties": {
"^x-[\\w\\d\\.\\x2d_]+$": {
"$ref": "http://asyncapi.com/definitions/3.0.0/specificationExtension.json"
}
}
},
"http://asyncapi.com/definitions/3.0.0/messageBindingsObject.json": {
"$id": "http://asyncapi.com/definitions/3.0.0/messageBindingsObject.json",
"type": "object",
Expand Down

0 comments on commit b87f2d3

Please sign in to comment.