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

Specifies the classification of a delegated permission.

Delegated permission classifications can be used in combination with user consent settings to choose which permissions a user is allowed to consent to. See Configure how end-users consent to applications to learn more about permission classifications.

Properties

Property Type Description
id String A unique identifier for the delegatedPermissionClassification Key. Not nullable. Read-only.
classification permissionClassificationType The classification value. Possible values: low, medium (preview), high (preview). Doesn't support $filter.
permissionId Guid The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Doesn't support $filter.
permissionName String The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Doesn't support $filter.

JSON representation

The following JSON representation shows the resource type.

{
  "id": "string (identifier)",
  "classification": "low",
  "permissionId": "string",
  "permissionName": "string"
}