| 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 |
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.
| 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. |
None.
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"
}
]
}