Microsoft Graph · Schema
microsoft.graph.thumbnailSet
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.thumbnailSet",
"title": "microsoft.graph.thumbnailSet",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "thumbnailSet",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"large": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.thumbnail"
},
{
"type": "object",
"nullable": true
}
],
"description": "A 1920x1920 scaled thumbnail."
},
"medium": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.thumbnail"
},
{
"type": "object",
"nullable": true
}
],
"description": "A 176x176 scaled thumbnail."
},
"small": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.thumbnail"
},
{
"type": "object",
"nullable": true
}
],
"description": "A 48x48 cropped thumbnail."
},
"source": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.thumbnail"
},
{
"type": "object",
"nullable": true
}
],
"description": "A custom thumbnail image or the original image used to generate other thumbnails."
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.thumbnailSet"
}