Microsoft Graph · Schema
thumbnail
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| content | string | The content stream for the thumbnail. |
| height | number | The height of the thumbnail, in pixels. |
| sourceItemId | string | The unique identifier of the item that provided the thumbnail. This is only available when a folder thumbnail is requested. |
| url | string | The URL used to fetch the thumbnail content. |
| width | number | The width of the thumbnail, in pixels. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.thumbnail",
"title": "thumbnail",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"content": {
"type": "string",
"description": "The content stream for the thumbnail.",
"format": "base64url",
"nullable": true
},
"height": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The height of the thumbnail, in pixels.",
"format": "int32",
"nullable": true
},
"sourceItemId": {
"type": "string",
"description": "The unique identifier of the item that provided the thumbnail. This is only available when a folder thumbnail is requested.",
"nullable": true
},
"url": {
"type": "string",
"description": "The URL used to fetch the thumbnail content.",
"nullable": true
},
"width": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The width of the thumbnail, in pixels.",
"format": "int32",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}