{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.sharedWithChannelTeamInfo", "title": "microsoft.graph.sharedWithChannelTeamInfo", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.teamInfo" }, { "title": "sharedWithChannelTeamInfo", "required": [ "@odata.type" ], "type": "object", "properties": { "isHostTeam": { "type": "boolean", "description": "Indicates whether the team is the host of the channel.", "nullable": true }, "allowedMembers": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.conversationMember" }, "description": "A collection of team members who have access to the shared channel.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.sharedWithChannelTeamInfo" }