Microsoft Graph · Schema

microsoft.graph.teamsTab

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphteamstab-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.teamsTab",
  "title": "microsoft.graph.teamsTab",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "teamsTab",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "configuration": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.teamsTabConfiguration"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Container for custom settings applied to a tab. The tab is considered configured only once this property is set."
        },
        "displayName": {
          "type": "string",
          "description": "Name of the tab.",
          "nullable": true
        },
        "webUrl": {
          "type": "string",
          "description": "Deep link URL of the tab instance. Read-only.",
          "nullable": true
        },
        "teamsApp": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.teamsApp"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The application that is linked to the tab. This can't be changed after tab creation.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.teamsTab"
}