Skip to content

Latest commit

 

History

History
56 lines (48 loc) · 2.07 KB

File metadata and controls

56 lines (48 loc) · 2.07 KB
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

contentModelUsage resource type

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.

Properties

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.

Relationships

None.

JSON representation

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"
}