Skip to content

Latest commit

 

History

History
60 lines (47 loc) · 2.32 KB

File metadata and controls

60 lines (47 loc) · 2.32 KB
title optionalClaim resource type
description Contains an optional claim associated with an application.
ms.localizationpriority medium
author Jackson-Woods
ms.subservice entra-applications
doc_type resourcePageType
ms.date 07/22/2024

optionalClaim resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Contains an optional claim associated with an application . The idToken, accessToken, and saml2Token properties of the optionalClaims resource is a collection of optionalClaim. If supported by a specific claim, you can also modify the behavior of the optionalClaim using the additionalProperties property.

For more information, see provide optional claims to your Microsoft Entra app.

Properties

Property Type Description
additionalProperties String collection Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property.
essential Boolean If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false.
name String The name of the optional claim.
source String The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object.

JSON representation

The following JSON representation shows the resource type.

{
  "additionalProperties": ["String"],
  "essential": true,
  "name": "String",
  "source": "String"
}