Microsoft Graph · Schema

webPartData

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
dataVersion string Data version of the web part. The value is defined by the web part developer. Different dataVersions usually refers to a different property structure.
description string Description of the web part.
properties object Properties bag of the web part.
serverProcessedContent object Contains collections of data that can be processed by server side services like search index and link fixup.
title string Title of the web part.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphwebpartdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.webPartData",
  "title": "webPartData",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "dataVersion": {
      "type": "string",
      "description": "Data version of the web part. The value is defined by the web part developer. Different dataVersions usually refers to a different property structure.",
      "nullable": true
    },
    "description": {
      "type": "string",
      "description": "Description of the web part.",
      "nullable": true
    },
    "properties": {
      "description": "Properties bag of the web part."
    },
    "serverProcessedContent": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.serverProcessedContent"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Contains collections of data that can be processed by server side services like search index and link fixup."
    },
    "title": {
      "type": "string",
      "description": "Title of the web part.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}