delegatedPermissionClassification resource type

Namespace: microsoft.graph

Used to specify 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
classification permissionClassificationType The classification value being given. Possible value: low. Doesn't support $filter.
id String A unique identifier for the delegatedPermissionClassification Key. Not nullable. Read-only.
permissionId String The unique identifier (id) for the delegated permission listed in the oauth2PermissionScopes collection of the servicePrincipal. Required on create. Doesn't support $filter.
permissionName String The claim value (value) for the delegated permission listed in the oauth2PermissionScopes collection of the servicePrincipal. Doesn't support $filter.

JSON representation

Here's a JSON representation of the resource.

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