Skip to content

Latest commit

 

History

History
97 lines (81 loc) · 2.99 KB

insights-resourcevisualization.md

File metadata and controls

97 lines (81 loc) · 2.99 KB
title description author ms.localizationpriority ms.subservice doc_type
resourceVisualization resource type
Complex type containing properties of Insights.
simonhult
medium
insights
resourcePageType

resourceVisualization resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Complex type containing properties of itemInsights.

Properties

Property Type Description
title String The item's title text.
type String The item's media type. Can be used for filtering for a specific file based on a specific type. See the Type property values section, for supported types.
mediaType String The item's media type. Can be used for filtering for a specific type of file based on supported IANA Media Mime Types. Not all Media Mime Types are supported.
previewImageUrl String A URL leading to the preview image for the item.
previewText String A preview text for the item.
containerWebUrl String A path leading to the folder in which the item is stored.
containerDisplayName String A string describing where the item is stored. For example, the name of a SharePoint site or the user name identifying the owner of the OneDrive storing the item.
containerType String Can be used for filtering by the type of container in which the file is stored. Such as Site or OneDriveBusiness.

Type property values

  • PowerPoint
  • Word
  • Excel
  • Pdf
  • OneNote
  • OneNotePage
  • InfoPath
  • Visio
  • Publisher
  • Project
  • Access
  • Mail
  • CSV
  • Archive
  • XPS
  • Audio
  • Video
  • Image
  • Web
  • Text
  • Xml
  • Story
  • ExternalContent
  • Folder
  • Other

Example query: https://graph.microsoft.com/beta/me/insights/trending?$filter=ResourceVisualization/Type eq 'PowerPoint'

containerType property values

The supported types can differ based on containers from which itemInsights returns files. For example, only the sharedInsight insight returns files from 'DropBox', 'Box', and 'GDrive'.

  • OneDriveBusiness
  • Site
  • Mail
  • DropBox
  • Box
  • GDrive

Example query: https://graph.microsoft.com/beta/me/insights/trending?$filter=ResourceVisualization/containerType eq 'OneDriveBusiness'

JSON representation

The following JSON representation shows the resource type.

{
  "title": "string",
  "type"  : "string",
  "mediaType": "string",
  "previewImageUrl": "string",
  "previewText": "string",
  "containerWebUrl": "string",
  "containerDisplayName": "string",
  "containerType": "string"
}