diff --git a/definitions/3.0.0/messageObject.json b/definitions/3.0.0/messageObject.json index f8cd37bb..1903dc7b 100644 --- a/definitions/3.0.0/messageObject.json +++ b/definitions/3.0.0/messageObject.json @@ -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." diff --git a/schemas/3.0.0-without-$id.json b/schemas/3.0.0-without-$id.json index 5f271569..4ca677a4 100644 --- a/schemas/3.0.0-without-$id.json +++ b/schemas/3.0.0-without-$id.json @@ -2542,10 +2542,6 @@ "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." diff --git a/schemas/3.0.0.json b/schemas/3.0.0.json index 9066b052..f86ffae0 100644 --- a/schemas/3.0.0.json +++ b/schemas/3.0.0.json @@ -2594,10 +2594,6 @@ "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." diff --git a/test/definitions/3.0.0/models/channel/message.test.mjs b/test/definitions/3.0.0/models/channel/message.test.mjs index 99426546..b92e4639 100644 --- a/test/definitions/3.0.0/models/channel/message.test.mjs +++ b/test/definitions/3.0.0/models/channel/message.test.mjs @@ -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",