Microsoft Graph · Schema
serverProcessedContent
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| htmlStrings | array | 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 l |
| imageSources | array | 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 | array | 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 | array | A key-value map where keys are string identifiers and values are strings that should be search indexed. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.serverProcessedContent",
"title": "serverProcessedContent",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"htmlStrings": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.metaDataKeyStringPair"
},
"description": "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": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.metaDataKeyStringPair"
},
"description": "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": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.metaDataKeyStringPair"
},
"description": "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": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.metaDataKeyStringPair"
},
"description": "A key-value map where keys are string identifiers and values are strings that should be search indexed."
},
"@odata.type": {
"type": "string"
}
}
}