Skip to content

Commit

Permalink
Fix event mapping and add a missing field (#13485)
Browse files Browse the repository at this point in the history
Co-authored-by: Vikram Praveen Kumar <vipravee@microsoft.com>
  • Loading branch information
vikrampraveen and Vikram Praveen Kumar authored Mar 18, 2021
1 parent 12a91b6 commit cf9d9c4
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@
}
},
"AcsChatParticipantAddedToThreadEventData": {
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Communication.ChatParticipantAddedToThread event.",
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Communication.ChatThreadParticipantAdded event.",
"allOf": [
{
"$ref": "#/definitions/AcsChatEventInThreadBaseProperties"
Expand Down Expand Up @@ -324,7 +324,7 @@
}
},
"AcsChatParticipantRemovedFromThreadEventData": {
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Communication.ChatParticipantRemovedFromThread event.",
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Communication.ChatThreadParticipantRemoved event.",
"allOf": [
{
"$ref": "#/definitions/AcsChatEventInThreadBaseProperties"
Expand Down Expand Up @@ -544,6 +544,10 @@
"description": "Schema of common properties of all thread-level chat events",
"type": "object",
"properties": {
"transactionId": {
"description": "The transaction id will be used as co-relation vector",
"type": "string"
},
"threadId": {
"description": "The chat thread id",
"type": "string"
Expand Down

0 comments on commit cf9d9c4

Please sign in to comment.