Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: adding optional version to the message object #558

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions definitions/3.0.0/messageObject.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
"type": "string",
"description": "A brief summary of the message."
},
"version": {
"type": "string",
"description": "A version for the message."
},
"name": {
"type": "string",
"description": "Name of the message."
Expand Down
1 change: 1 addition & 0 deletions test/definitions/3.0.0/models/channel/message.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const data = new JsonSchemaTestSuiteData(
{
"name": "UserSignup",
"title": "User signup",
"version": "1.0.0",
"summary": "Action to sign a user up.",
"description": "A longer description",
"contentType": "application/json",
Expand Down
Loading