| title | contentModelUsage resource type |
|---|---|
| description | Provides information on where, by whom, and when a content model is applied. |
| author | travislius |
| ms.localizationpriority | medium |
| ms.subservice | sharepoint |
| doc_type | resourcePageType |
| ms.date | 05/30/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Contains information about where, by whom, and when a contentModel is applied, including information about the model itself, such as the model version.
| Property | Type | Description |
|---|---|---|
| createdBy | identitySet | Identity of the user, device, or application that first applied the contentModel to the library. |
| createdDateTime | DateTimeOffset | Date and time of the contentModel is first applied. |
| driveId | String | The ID of the drive where the contentModel is applied. |
| lastModifiedBy | identitySet | Identity of the user, device, or application that last applied the contentModel to the library. |
| lastModifiedDateTime | DateTimeOffset | Date and time of the contentModel is last applied. |
| modelId | String | The ID of the contentModel. |
| modelVersion | String | The version of the current applied contentModel. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.contentModelUsage",
"modelId": "String",
"driveId": "String",
"createdDateTime": "String (timestamp)",
"createdBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"lastModifiedBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"lastModifiedDateTime": "String (timestamp)",
"modelVersion": "String"
}