Skip to content

Commit

Permalink
chore(release): v6.3.0 (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
asyncapi-bot authored Jan 30, 2024
1 parent 0002c50 commit 516cb82
Show file tree
Hide file tree
Showing 4 changed files with 313 additions and 7 deletions.
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.2.1",
"version": "6.3.0",
"description": "AsyncAPI schema versions",
"main": "index.js",
"types": "index.d.ts",
Expand Down
156 changes: 154 additions & 2 deletions schemas/3.0.0-without-$id.json
Original file line number Diff line number Diff line change
Expand Up @@ -3464,7 +3464,8 @@
"properties": {
"bindingVersion": {
"enum": [
"0.2.0"
"0.2.0",
"0.3.0"
]
}
},
Expand Down Expand Up @@ -3496,6 +3497,21 @@
"then": {
"$ref": "#/definitions/bindings-http-0.2.0-message"
}
},
{
"if": {
"required": [
"bindingVersion"
],
"properties": {
"bindingVersion": {
"const": "0.3.0"
}
}
},
"then": {
"$ref": "#/definitions/bindings-http-0.3.0-message"
}
}
]
},
Expand Down Expand Up @@ -3838,6 +3854,50 @@
}
]
},
"bindings-http-0.3.0-message": {
"title": "HTTP message bindings object",
"description": "This object contains information about the message representation in HTTP.",
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^x-[\\w\\d\\.\\x2d_]+$": {
"$ref": "#/definitions/specificationExtension"
}
},
"properties": {
"headers": {
"$ref": "#/definitions/schema",
"description": "\tA Schema object containing the definitions for HTTP-specific headers. This schema MUST be of type 'object' and have a 'properties' key."
},
"statusCode": {
"type": "number",
"description": "The HTTP response status code according to [RFC 9110](https://httpwg.org/specs/rfc9110.html#overview.of.status.codes). `statusCode` is only relevant for messages referenced by the [Operation Reply Object](https://www.asyncapi.com/docs/reference/specification/v3.0.0#operationReplyObject), as it defines the status code for the response. In all other cases, this value can be safely ignored."
},
"bindingVersion": {
"type": "string",
"enum": [
"0.3.0"
],
"description": "The version of this binding. If omitted, \"latest\" MUST be assumed."
}
},
"examples": [
{
"headers": {
"type": "object",
"properties": {
"Content-Type": {
"type": "string",
"enum": [
"application/json"
]
}
}
},
"bindingVersion": "0.3.0"
}
]
},
"bindings-amqp-0.3.0-message": {
"title": "AMQP message bindings object",
"description": "This object contains information about the message representation in AMQP.",
Expand Down Expand Up @@ -6409,7 +6469,8 @@
"properties": {
"bindingVersion": {
"enum": [
"0.2.0"
"0.2.0",
"0.3.0"
]
}
},
Expand Down Expand Up @@ -6441,6 +6502,21 @@
"then": {
"$ref": "#/definitions/bindings-http-0.2.0-operation"
}
},
{
"if": {
"required": [
"bindingVersion"
],
"properties": {
"bindingVersion": {
"const": "0.3.0"
}
}
},
"then": {
"$ref": "#/definitions/bindings-http-0.3.0-operation"
}
}
]
},
Expand Down Expand Up @@ -6835,6 +6911,82 @@
}
]
},
"bindings-http-0.3.0-operation": {
"title": "HTTP operation bindings object",
"description": "This object contains information about the operation representation in HTTP.",
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^x-[\\w\\d\\.\\x2d_]+$": {
"$ref": "#/definitions/specificationExtension"
}
},
"properties": {
"method": {
"type": "string",
"enum": [
"GET",
"PUT",
"POST",
"PATCH",
"DELETE",
"HEAD",
"OPTIONS",
"CONNECT",
"TRACE"
],
"description": "When 'type' is 'request', this is the HTTP method, otherwise it MUST be ignored. Its value MUST be one of 'GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'HEAD', 'OPTIONS', 'CONNECT', and 'TRACE'."
},
"query": {
"$ref": "#/definitions/schema",
"description": "A Schema object containing the definitions for each query parameter. This schema MUST be of type 'object' and have a properties key."
},
"bindingVersion": {
"type": "string",
"enum": [
"0.3.0"
],
"description": "The version of this binding. If omitted, 'latest' MUST be assumed."
}
},
"examples": [
{
"query": {
"type": "object",
"required": [
"companyId"
],
"properties": {
"companyId": {
"type": "number",
"minimum": 1,
"description": "The Id of the company."
}
},
"additionalProperties": false
},
"bindingVersion": "0.3.0"
},
{
"method": "GET",
"query": {
"type": "object",
"required": [
"companyId"
],
"properties": {
"companyId": {
"type": "number",
"minimum": 1,
"description": "The Id of the company."
}
},
"additionalProperties": false
},
"bindingVersion": "0.3.0"
}
]
},
"bindings-amqp-0.3.0-operation": {
"title": "AMQP operation bindings object",
"description": "This object contains information about the operation representation in AMQP.",
Expand Down
Loading

0 comments on commit 516cb82

Please sign in to comment.