Microsoft Graph · Schema

teamsTabConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
contentUrl string Url used for rendering tab contents in Teams. Required.
entityId string Identifier for the entity hosted by the tab provider.
removeUrl string Url called by Teams client when a Tab is removed using the Teams Client.
websiteUrl string Url for showing tab contents outside of Teams.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphteamstabconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.teamsTabConfiguration",
  "title": "teamsTabConfiguration",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "contentUrl": {
      "type": "string",
      "description": "Url used for rendering tab contents in Teams. Required.",
      "nullable": true
    },
    "entityId": {
      "type": "string",
      "description": "Identifier for the entity hosted by the tab provider.",
      "nullable": true
    },
    "removeUrl": {
      "type": "string",
      "description": "Url called by Teams client when a Tab is removed using the Teams Client.",
      "nullable": true
    },
    "websiteUrl": {
      "type": "string",
      "description": "Url for showing tab contents outside of Teams.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}