webPartData resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the data of a given web part.

Properties

Property Type Description
audiences String collection Audience information of the web part. By using this property, specific content is prioritized to specific audiences.
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 Json Properties bag of the web part.
serverProcessedContent serverProcessedContent 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.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.webPartData",
  "audiences": ["String"],
  "dataVersion": "String",
  "description": "String",
  "properties": {
    "@odata.type": "microsoft.graph.Json"
  },
  "serverProcessedContent": {
    "@odata.type": "microsoft.graph.serverProcessedContent"
  },
  "title": "String"
}