serverProcessedContent 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 server processed content of a given web part.

Properties

Property Type Description
componentDependencies metaDataKeyStringPair collection A key-value map where keys are string identifiers and values are component ids. SharePoint servers might decide to use this hint to preload the script for corresponding components for performance boost.
customMetadata metaDataKeyValuePair collection A key-value map where keys are string identifier and values are object of custom key-value pair.
htmlStrings metaDataKeyStringPair collection A key-value map where keys are string identifiers and values are rich text with HTML format. SharePoint servers treat the values as HTML content and run services like safety checks, search index and link fixup on them.
imageSources metaDataKeyStringPair collection A key-value map where keys are string identifiers and values are image sources. SharePoint servers treat the values as image sources and run services like search index and link fixup on them.
links metaDataKeyStringPair collection A key-value map where keys are string identifiers and values are links. SharePoint servers treat the values as links and run services like link fixup on them.
searchablePlainTexts metaDataKeyStringPair collection A key-value map where keys are string identifiers and values are strings that should be search indexed.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.serverProcessedContent",
  "htmlStrings": [
    {
      "@odata.type": "microsoft.graph.metaDataKeyStringPair"
    }
  ],
  "searchablePlainTexts": [
    {
      "@odata.type": "microsoft.graph.metaDataKeyStringPair"
    }
  ],
  "links": [
    {
      "@odata.type": "microsoft.graph.metaDataKeyStringPair"
    }
  ],
  "imageSources": [
    {
      "@odata.type": "microsoft.graph.metaDataKeyStringPair"
    }
  ],
  "componentDependencies": [
    {
      "@odata.type": "microsoft.graph.metaDataKeyStringPair"
    }
  ],
  "customMetadata": [
    {
      "@odata.type": "microsoft.graph.metaDataKeyValuePair"
    }
  ]
}