webPartData resource type

Namespace: microsoft.graph

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 will be 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"
}