| author | tushar20 |
|---|---|
| title | sharePointIdentitySet resource type |
| ms.localizationpriority | medium |
| description | Represents a keyed collection of sharePointIdentity and identity resources. |
| ms.subservice | sharepoint |
| doc_type | resourcePageType |
| ms.date | 07/22/2024 |
Represents a keyed collection of sharePointIdentity resources. This resource extends from the identitySet resource to provide the ability to expose SharePoint-specific information to the user.
This resource is used to represent a set of identities associated with various events for an item, such as created by or last modified by.
For usage information, see driveItem.
| Property | Type | Description |
|---|---|---|
| application | identity | The application associated with this action. Optional. |
| device | identity | The device associated with this action. Optional. |
| group | identity | The group associated with this action. Optional. |
| user | identity | The user associated with this action. Optional. |
| siteGroup | sharePointIdentity | The SharePoint group associated with this action. Optional. |
| siteUser | sharePointIdentity | The SharePoint user associated with this action. Optional. |
The following JSON representation shows the resource type.
{
/** inherited from IdentitySet **/
"application": {"@odata.type": "microsoft.graph.identity"},
"device": {"@odata.type": "microsoft.graph.identity"},
"user": {"@odata.type": "microsoft.graph.identity"},
"group": {"@odata.type": "microsoft.graph.identity"},
"siteUser": {"@odata.type": "microsoft.graph.sharePointIdentity"},
"siteGroup":{"@odata.type": "microsoft.graph.sharePointIdentity"}
}