Edit

Share via


applicationRiskFactorLegalInfo 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.

Represents legal compliance information and data management policies for an application, including data retention practices, GDPR alignment, ownership rights, and DMCA adherence.

Properties

Property Type Description
dataRetention dataRetentionLevel Specifies how long the application retains user or customer data after account deletion or contract termination. The possible values are: none, dataRetained, deletedImmediately, deletedWithin1Month, deletedWithin2Weeks, deletedWithin3Months, deletedWithinMoreThan3Months, unknownFutureValue.
gdpr applicationRiskFactorLegalInfoGdpr Provides details on the application's compliance with the General Data Protection Regulation (GDPR), including data subject rights and lawful processing bases.
hasDataOwnership Boolean Indicates whether customers maintain ownership and control of their data processed or stored by the application.
hasDmca Boolean Indicates whether the application or organization complies with the Digital Millennium Copyright Act (DMCA) or equivalent copyright protection frameworks.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.applicationRiskFactorLegalInfo",
  "hasDmca": "Boolean",
  "hasDataOwnership": "Boolean",
  "dataRetention": "String",
  "gdpr": {
    "@odata.type": "microsoft.graph.applicationRiskFactorLegalInfoGdpr"
  }
}