I would like the policyId to be included in the claims that are returned when my Customized SignUpSignIn policy is executed.
I think this should be in claim Id
The PolicyId is in the ACR claim when using the Starter Pack
Add the following ClaimType to TrustFrameworkExtensions.xml:
<ClaimType Id="trustFrameworkPolicy">
<DisplayName>Trust Framework Policy</DisplayName>
<DataType>string</DataType>
<DefaultPartnerClaimTypes>
<Protocol Name="OAuth2" PartnerClaimType="tfp" />
<Protocol Name="OpenIdConnect" PartnerClaimType="tfp" />
</DefaultPartnerClaimTypes>
</ClaimType>
Note: ClaimType should be a child node of <ClaimsSchema><BuildingBlocks>