Düzenle

Aracılığıyla paylaş


contentModelUsage resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

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