Skip to content

Commit

Permalink
Create an alias for CommunicationIdentifierModel
Browse files Browse the repository at this point in the history
  • Loading branch information
Vikram Praveen Kumar committed Feb 11, 2021
1 parent bd4903c commit 19ef901
Showing 1 changed file with 16 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"properties": {
"createdByCommunicationIdentifier": {
"description": "The communication identifier of the user who created the thread",
"$ref": "../../../../../communication/data-plane/Microsoft.CommunicationServicesCommon/stable/2021-03-07/common.json#/definitions/CommunicationIdentifierModel"
"$ref": "#/definitions/CommunicationIdentifier"
},
"properties": {
"description": "The thread properties",
Expand Down Expand Up @@ -93,7 +93,7 @@
"properties": {
"deletedByCommunicationIdentifier": {
"description": "The communication identifier of the user who deleted the thread",
"$ref": "../../../../../communication/data-plane/Microsoft.CommunicationServicesCommon/stable/2021-03-07/common.json#/definitions/CommunicationIdentifierModel"
"$ref": "#/definitions/CommunicationIdentifier"
},
"deleteTime": {
"description": "The deletion time of the thread",
Expand All @@ -112,7 +112,7 @@
"properties": {
"editedByCommunicationIdentifier": {
"description": "The communication identifier of the user who updated the thread properties",
"$ref": "../../../../../communication/data-plane/Microsoft.CommunicationServicesCommon/stable/2021-03-07/common.json#/definitions/CommunicationIdentifierModel"
"$ref": "#/definitions/CommunicationIdentifier"
},
"editTime": {
"description": "The time at which the properties of the thread were updated",
Expand Down Expand Up @@ -143,7 +143,7 @@
},
"addedByCommunicationIdentifier": {
"description": "The communication identifier of the user who added the user",
"$ref": "../../../../../communication/data-plane/Microsoft.CommunicationServicesCommon/stable/2021-03-07/common.json#/definitions/CommunicationIdentifierModel"
"$ref": "#/definitions/CommunicationIdentifier"
},
"participantAdded": {
"description": "The details of the user who was added",
Expand All @@ -166,7 +166,7 @@
},
"removedByCommunicationIdentifier": {
"description": "The communication identifier of the user who removed the user",
"$ref": "../../../../../communication/data-plane/Microsoft.CommunicationServicesCommon/stable/2021-03-07/common.json#/definitions/CommunicationIdentifierModel"
"$ref": "#/definitions/CommunicationIdentifier"
},
"participantRemoved": {
"description": "The details of the user who was removed",
Expand Down Expand Up @@ -257,7 +257,7 @@
},
"senderCommunicationIdentifier": {
"description": "The communication identifier of the sender",
"$ref": "../../../../../communication/data-plane/Microsoft.CommunicationServicesCommon/stable/2021-03-07/common.json#/definitions/CommunicationIdentifierModel"
"$ref": "#/definitions/CommunicationIdentifier"
},
"senderDisplayName": {
"description": "The display name of the sender",
Expand Down Expand Up @@ -285,7 +285,7 @@
"properties": {
"recipientCommunicationIdentifier": {
"description": "The communication identifier of the target user",
"$ref": "../../../../../communication/data-plane/Microsoft.CommunicationServicesCommon/stable/2021-03-07/common.json#/definitions/CommunicationIdentifierModel"
"$ref": "#/definitions/CommunicationIdentifier"
},
"transactionId": {
"description": "The transaction id will be used as co-relation vector",
Expand All @@ -307,7 +307,7 @@
},
"participantCommunicationIdentifier": {
"description": "The communication identifier of the user",
"$ref": "../../../../../communication/data-plane/Microsoft.CommunicationServicesCommon/stable/2021-03-07/common.json#/definitions/CommunicationIdentifierModel"
"$ref": "#/definitions/CommunicationIdentifier"
}
}
},
Expand Down Expand Up @@ -347,6 +347,14 @@
"type": "integer"
}
}
},
"CommunicationIdentifier": {
"description": "Schema of the CommunicationIdentifier object used to identify an ACS user",
"allOf": [
{
"$ref": "../../../../../communication/data-plane/Microsoft.CommunicationServicesCommon/stable/2021-03-07/common.json#/definitions/CommunicationIdentifierModel"
}
]
}
}
}

0 comments on commit 19ef901

Please sign in to comment.