Edit

Share via


applicationRiskScore 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 a set of Microsoft-generated numerical scores that quantify the overall risk posture of an application. Each score reflects a specific dimension—security, compliance, legal, and provider reputation—aggregated into a total composite score ranging from 0 (high risk) to 10 (low risk). For more information, see Find your cloud app and calculate risk scores.

Properties

Property Type Description
compliance Single Specifies the compliance risk score based on the application's alignment with regulatory standards and industry certifications such as HIPAA, CSA, and PCI-DSS.
legal Single Specifies the legal risk score based on data protection practices, privacy policy transparency, and jurisdictional compliance to regulations and policies such as DMCA and data retention policy.
provider Single Specifies the provider risk score based on vendor credibility, operational maturity, and trustworthiness.
security Single Specifies the security risk score based on authentication strength, encryption, vulnerability management, and overall security hygiene.
total Single Represents the composite risk score derived from all risk categories.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.applicationRiskScore",
  "total": "Double",
  "security": "Double",
  "provider": "Double",
  "compliance": "Double",
  "legal": "Double"
}