Skip to content

Commit

Permalink
Merge branch 'master' into automate-spec-update-to-website
Browse files Browse the repository at this point in the history
  • Loading branch information
AceTheCreator authored Jan 28, 2025
2 parents d1a6fd1 + 1a738de commit 3ef2bcb
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 9 deletions.
3 changes: 2 additions & 1 deletion definitions/3.0.0/messageExampleObject.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
},
"headers": {
"type": "object",
"description": "Example of the application headers. It can be of any type."
"description": "Example of the application headers. It MUST be a map of key-value pairs."
},
"payload": {
"type": ["number", "string", "boolean", "object", "array", "null"],
"description": "Example of the message payload. It can be of any type."
}
},
Expand Down
11 changes: 6 additions & 5 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.8.0",
"version": "6.8.1",
"description": "AsyncAPI schema versions",
"main": "index.js",
"types": "index.d.ts",
Expand Down
10 changes: 9 additions & 1 deletion schemas/3.0.0-without-$id.json
Original file line number Diff line number Diff line change
Expand Up @@ -3560,9 +3560,17 @@
},
"headers": {
"type": "object",
"description": "Example of the application headers. It can be of any type."
"description": "Example of the application headers. It MUST be a map of key-value pairs."
},
"payload": {
"type": [
"number",
"string",
"boolean",
"object",
"array",
"null"
],
"description": "Example of the message payload. It can be of any type."
}
}
Expand Down
10 changes: 9 additions & 1 deletion schemas/3.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -3618,9 +3618,17 @@
},
"headers": {
"type": "object",
"description": "Example of the application headers. It can be of any type."
"description": "Example of the application headers. It MUST be a map of key-value pairs."
},
"payload": {
"type": [
"number",
"string",
"boolean",
"object",
"array",
"null"
],
"description": "Example of the message payload. It can be of any type."
}
}
Expand Down

0 comments on commit 3ef2bcb

Please sign in to comment.