{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.teamworkActivityTopic", "title": "teamworkActivityTopic", "required": [ "@odata.type" ], "type": "object", "properties": { "source": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.teamworkActivityTopicSource" }, { "type": "object", "nullable": true } ], "description": "Type of source. The possible values are: entityUrl, text. For supported Microsoft Graph URLs, use entityUrl. For custom text, use text." }, "value": { "type": "string", "description": "The topic value. If the value of the source property is entityUrl, this must be a Microsoft Graph URL. If the value is text, this must be a plain text value." }, "webUrl": { "type": "string", "description": "The link the user clicks when they select the notification. Optional when source is entityUrl; required when source is text.", "nullable": true }, "@odata.type": { "type": "string" } } }