Skip to content

Latest commit

 

History

History
51 lines (44 loc) · 1.77 KB

File metadata and controls

51 lines (44 loc) · 1.77 KB
title customClaimConfiguration resource type
description Represents a claim configuration that details the conditions and sources of any custom claim.
author rahul-nagraj
ms.localizationpriority medium
ms.subservice entra-id
doc_type resourcePageType
ms.date 06/10/2024

customClaimConfiguration resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents a claim configuration that details the conditions and sources of any custom claim. Typically, an attribute or a set of transforms should be provided to source the claim value. In the case where both are provided, the output of the transforms takes priority. If the transform results in no output then the attribute value is used.

Properties

Property Type Description
attribute customClaimAttributeBase The attribute on which we source this property.
condition customClaimConditionBase The condition, if any, associated with this configuration.
transformations customClaimTransformation collection An ordered list of transformations that are applied in sequence.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.customClaimConfiguration",
  "condition": {
    "@odata.type": "microsoft.graph.customClaimConditionBase"
  },
  "attribute": {
    "@odata.type": "microsoft.graph.customClaimAttributeBase"
  },
  "transformations": [
    {
      "@odata.type": "microsoft.graph.containsTransformation"
    }
  ]
}