{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.teamworkTagMember",
"title": "microsoft.graph.teamworkTagMember",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "teamworkTagMember",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"displayName": {
"type": "string",
"description": "The member's display name.",
"nullable": true
},
"tenantId": {
"type": "string",
"description": "The ID of the tenant that the tag member is a part of.",
"nullable": true
},
"userId": {
"type": "string",
"description": "The user ID of the member.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.teamworkTagMember"
}